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>
#include <game.h>
using namespace std;
bool used[1005];
int live, cnt[1005];
void initialize(int n) {
}
int hasEdge(int u, int v) {
if (used[u] && used[v]) return 1;
if (!used[u] && !used[v]) {
used[u] = used[v] = true;
live += 2;
return 1;
}
if (used[v]) swap(u, v);
cnt[v]++;
if (cnt[v] == live) {
live++;
used[v] = true;
return 1;
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |