# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1165080 | goats_9 | Bootfall (IZhO17_bootfall) | C++20 | 441 ms | 780 KiB |
/* Author: goats_9 */
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
constexpr int N = 500 * 250 + 1;
int main() {
cin.tie(0)->sync_with_stdio(false);
int n;
cin >> n;
vector<int> a(n);
for (auto &u : a)
cin >> u;
int tot = accumulate(a.begin(), a.end(), 0);
auto get = [&] (int ban) {
bitset<N> ret;
ret[0] = 1;
for (int i = 0; i < n; i++) {
if (i == ban) continue;
ret |= ret << a[i];
}
return ret;
};
auto ini = get(-1);
if (tot % 2 || !ini[tot / 2]) {
return cout << "0", 0;
}
bitset<N> df;
# | 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... |