Submission #1122317

#TimeUsernameProblemLanguageResultExecution timeMemory
1122317I_love_BanuBootfall (IZhO17_bootfall)C++14
100 / 100
305 ms3040 KiB
#include <bits/stdc++.h> using namespace std; typedef int ll; const int mxN = 500; const int mxSm = mxN * mxN; int dp[mxSm + 1]; int a[mxN]; void solve() { int N; cin >> N; vector<int> ans; for (int i = 1; i <= mxSm; i ++) { ans.push_back(i); } int s = 0; dp[0] = 1; for (int i = 0; i < N; i ++) { cin >> a[i]; for (int j = mxSm; j >= a[i]; j --) { dp[j] += dp[j - a[i]]; } s += a[i]; } if (s % 2 || dp[s / 2] == 0) { cout << "0\n"; return; } for (int i = 0; i < N; i ++) { s -= a[i]; for (int j = a[i]; j <= mxSm; j ++) { dp[j] -= dp[j - a[i]]; } int j = 0; while (j<(int)ans.size()){ if (s < ans[j] || (s - ans[j]) % 2 || !dp[(s - ans[j]) / 2]) { if (j < (int)ans.size()) { swap(ans[j], ans[(int)ans.size()-1]); } ans.pop_back(); } else { j ++; } } s += a[i]; for (int j = mxSm; j >= a[i]; j --) { dp[j] += dp[j - a[i]]; } } sort(begin(ans),end(ans)); cout << ans.size() << "\n"; for (int i : ans) { cout << i << ' '; } } signed main() { solve(); }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...