Submission #1115433

#TimeUsernameProblemLanguageResultExecution timeMemory
1115433vjudge1Bootfall (IZhO17_bootfall)C++17
13 / 100
1 ms504 KiB
#include "bits/stdc++.h" using ll = long long; using namespace std; #define int ll const int mxN = 5e2; const int mxSm = mxN * 2; 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); } dp[0] = 1; int s = 0; 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 || 0 == dp[s / 2]) { 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...