# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
38257 | antimirage | Bootfall (IZhO17_bootfall) | C++14 | 1000 ms | 22464 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.
#include <iostream>
#include <vector>
#include <deque>
#include <math.h>
#include <set>
#include <iomanip>
#include <time.h>
#include <list>
#include <stdio.h>
#include <queue>
#include <map>
#include <algorithm>
#include <assert.h>
#include <memory.h>
#define mk make_pair
#define sc second
#define fr first
#define pb emplace_back
#define all(s) s.begin(), s.end()
#define sz(s) ( (int)s.size() )
using namespace std;
const int N = 275;
bool dp[N][N * N];
int n, ar[N], mx = 270 * 270, sum;
vector <int> ans;
main ()
{
cin >> n;
for (int i = 1; i <= n; i++)
scanf("%d", &ar[i]), sum += ar[i];
mx = sum;
for (int i = 0; i <= n; i++)
{
dp[i][0] = 1;
for (int j = 1; j <= n; j++)
{
if (i == j) continue;
for (int k = mx - ar[j]; k >= 0; k--)
dp[i][k + ar[j]] |= dp[i][k];
}
}
if ( sum & 1 || !dp[0][sum / 2] )
{
puts("0");
return 0;
}
for (int i = 0; i <= mx; i++)
{
bool fl = true;
for (int j = 1; j <= n; j++)
{
if ( ( (sum - ar[j] + i) & 1 ) || !dp[j][ (sum - ar[j] + i) / 2 - i ] ) {
fl = false;
break;
}
}
if (fl)
ans.pb(i);
}
cout << sz(ans) << endl;
for (auto x : ans)
printf("%d ", x);
}
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... |