이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 530;
const int M = 250010;
int f[M], f2[M], cnt[M];
int main() {
f[0] = 1;
int sum = 0;
int n;
cin >> n;
int a[n];
for (int i = 1; i <= n; i++) {
cin >> a[i];
sum += a[i];
for (int j = M; j >= a[i]; j--) {
f[j] = (f[j] + f[j - a[i]]);
}
}
if (sum % 2 == 0) {
if (f[sum / 2] == 0) {
cout << 0 << '\n';
return 0;
}
}
for (int i = 1; i <= n; i++) {
for (int j = 0; j <= M; j++) {
if (j >= a[i]) {
f2[j] = (f[j] - f2[j - a[i]]);
} else {
f2[j] = f[j];
}
}
int odd = (sum - a[i]) % 2;
for (int j = odd; j <= M; j += 2) {
int all = sum - a[i] + j;
if (all % 2 == 0) {
int h = all / 2;
if (f2[h] != 0 || (h >= j && f2[h - j] != 0)) {
cnt[j]++;
}
}
}
}
vector<int> save;
for (int i = 1; i <= M; i++)
if (cnt[i] == n)
save.push_back(i);
cout << save.size() << '\n';
for (int x : save)
cout << x << " ";
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |