https://cn.vjudge.net/problem/UVA-1374
LRJ紫书说要用IDA*,粗略想了想似乎是可以不用的.这里就简单dfs了一下+照搬紫书剪枝,代码意外地短.
还可以进一步优化,不过考虑到这题的数据量,已经没有必要了.
#include<cstdio>
using namespace std;
int ans, n, a[105];
bool dfs(int dep, int sum)
{
if (dep > ans || sum<<(ans-dep) < n || sum <= 0) return false;
a[dep] = sum;
if (sum == n || sum<<(ans-dep) == n) return true;
for (int i = 0; i <= dep; ++i)
if (dfs(dep+1, sum+a[i]) || dfs(dep+1, sum-a[i])) return true;
return false;
}
int main()
{
while (~scanf("%d", &n) && n)
for (ans = 0; ; ++ans)
if (dfs(0,1)) {printf("%d\n", ans); break;}
return 0;
}