constint N = 70; int n, w[N], length, sum; bool st[N];
booldfs(int u, int s, int start)// 当前已经构造了u根木棍,当前正在构造的木棍长度为s,下一步从start开始(剪枝) { if (u * length == sum) returntrue; if (s == length) returndfs(u + 1, 0, 0);
for (int i = start; i < n; ++i) { if (st[i]) continue; if (s + w[i] > length) continue;
st[i] = true; if (dfs(u, s + w[i], i + 1)) returntrue; st[i] = false;
if (!s) returnfalse; // 冗余方案剪枝方案3,采用w[i]作为第一根木棍但是全局失败,则剩余方案均无序进行枚举 if (s + w[i] == length) returnfalse; // 冗余方案剪枝方案4,即采用w[i]作为最后一根失败,但是w[i]可以作为最后一根
int j = i; while(j < n && w[j] == w[i]) j ++; i = j - 1; }
returnfalse; }
intmain() { while (cin >> n, n != 0) { sum = 0; memset(st, false, sizeof st); for (int i = 0; i < n; ++i) { cin >> w[i]; sum += w[i]; } sort(w, w + n); reverse(w, w + n);