# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
933900 | dilanyan | Bootfall (IZhO17_bootfall) | C++17 | 1072 ms | 600 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
//-------------dilanyan------------\\
#define _CRT_SECURE_NO_WARNINGS
#include<bits/stdc++.h>
#include<stdio.h>
using namespace std;
//------------------Kargpefines--------------------\\
#define ll long long
#define pb push_back
#define all(u) (u).begin(), (u).end()
#define pqueue priority_queue
#define upper upper_bound
#define lower lower_bound
#define umap unordered_map
#define uset unordered_set
void KarginSet(string name = "") {
ios_base::sync_with_stdio(false); cin.tie(NULL);
if (name.size()) {
freopen((name + ".in").c_str(), "r", stdin);
freopen((name + ".out").c_str(), "w", stdout);
}
}
//-------------------KarginConstants------------------\\
const ll mod = 1000000007;
const ll inf = 1e9;
//-------------------KarginCode-----------------------\\
const int N = 200005;
int a[N], dp[N];
void KarginSolve() {
int n; cin >> n;
int sum = 0;
for (int i = 1;i <= n;i++) {
cin >> a[i];
sum += a[i];
}
vector<int> ans;
for (int s = 1;s <= sum;s++) {
bool flag = true;
for (int k = 0;k <= n;k++) {
for (int i = 0;i <= sum + s - a[k];i++) dp[i] = false;
dp[0] = true;
a[0] = s;
for (int i = 0;i <= n;i++) {
if(i == k) continue;
for (int j = sum + s - a[k];j >= 0;j--) {
if (j + a[i] <= sum + s - a[k] && dp[j]) dp[j + a[i]] = true;
}
}
if (!((sum + s - a[k]) % 2 == 0 && dp[(sum + s - a[k]) / 2])) {
flag = false;
break;
}
}
if (flag) ans.pb(s);
}
cout << ans.size() << '\n';
for (int i : ans) cout << i << ' ';
}
int main() {
KarginSet();
int test = 1;
//cin >> test;
while (test--) {
KarginSolve();
}
return 0;
}
Compilation message (stderr)
# | 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... |