上面是爆搜+剪枝下面是正解 爆搜加剪枝你值得拥有。 if(sum>=ans) return; if(sum>=ans) return; if(sum>=ans) return;对加了这句话,就ok了。爆搜的代码也不需要多解释了,今天突然想起来剪枝一下好像可以就试了试。其实就是dfs暴力所有路径。。。加了一个再普通不过的剪枝。 代码: /*Keep on going Never give up*/ #pragma GCC optimize(3,"Ofast","inline") #include <bits/stdc++.h> #define endl '\n' #...