This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define int long long
#define vt vector
#define pb push_back
#define all(x) (x).begin(), (x).end()
#define sz(x) (int)(x).size()
#define ff first
#define ss second
#define dbg(x) cerr << #x << " = " << x << '\n'
using namespace std;
using ll = long long;
using pii = pair<int, int>;
using vvi = vt< vt<int> >;
const int N = 1e6 + 5, mod = 1e9 + 7, inf = 1e18 + 7, B = 500, LIM = (1ll << 60);
const double eps = 1e-6;
int dp[200][10000];
void solve () {
int n;
cin >> n;
vt<int> a(n + 1);
int sum = 0;
for (int i = 1; i <= n; i++) cin >> a[i], sum += a[i];
if (n & 1) cout << "0\n", exit(0);
set<int> ans;
vt<int> used(sum + 1, 0);
for (int i = 1; i <= n; i++) {
dp[i][0] = 1;
for (int j = 1; j <= n; j++) {
if (i == j) continue;
for (int w = 10000 - a[j]; w >= 0; w--) {
if (dp[i][w] == 1) dp[i][w + a[j]] = 1;
}
}
}
for (int val = 1; val <= sum; val++) {
for (int i = 1; i <= n; i++) {
int x = a[i], s = sum - a[i];
a[i] = val;
s += a[i];
if (s & 1) {
a[i] = x;
continue;
}
if (dp[i][s / 2] == 1) {
used[val]++;
if (used[val] >= n) ans.insert(val);
}
a[i] = x;
}
}
cout << sz(ans) << '\n';
for (auto x: ans) cout << x << ' ';
cout << '\n';
}
bool testcases = 0;
signed main() {
cin.tie(0) -> sync_with_stdio(0);
int test = 1;
if (testcases) cin >> test;
for (int cs = 1; cs <= test; cs++) {
solve();
}
}
# | 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... |