# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1035301 | vjudge1 | Political Development (BOI17_politicaldevelopment) | C++17 | 3114 ms | 312668 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 <bits/stdc++.h>
using namespace std;
const int N = 5e4;
mt19937 rng(time(nullptr) + 69);
int n, k, cnt[N];
vector<int> rem, adj[N];
bitset<N> bt[N], curr;
bool solve(int tot, int x, int y) {
//cerr << tot << " " << x << " " << y << " " << curr.count() << endl;
if (curr.count() < tot) return 0;
else if (!x) return 1;
// tengo que pillar x mas, mayores que y, tengo curr odiados
vector<int> temp;
int sz = rem.size();
for (int i = sz-1; i >= 0; i--) {
if (rem[i] <= y) break;
temp.push_back(rem[i]);
}
shuffle(temp.begin(), temp.end(), rng);
sz = temp.size();
if (sz < x-1) return 0;
for (int i = 0; i < sz; i++) {
bitset<N> prv = curr;
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... |