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 "game.h"
#include <bits/stdc++.h>
using namespace std;
const int N = (int)1e5 + 5;
int nn;
int cn[N];
int s;
int cnt,o;
void initialize(int n) {
nn = n * (n - 1) / 2;
s = n;
for (int i = 0; i < n; i ++)
cn[i] = n - 1;
}
int hasEdge(int u, int v) {
cnt ++;
if (nn - cnt + 1 <= (s - 1) - o) {
cn[v] --,cn[u] --;
o ++;
return 1;
}
if (cn[u] == 1 || cn[v] == 1) {
cn[v] --;
cn[u] --;
o ++;
return 1;
}
else {
cn[u] --,cn[v] --;
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... |