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 <algorithm>
using namespace std;
int on[1500][1500];
int cnt[1500];
void initialize(int n) {
for (int i = 0; i < n; ++i) {
for (int j = i + 1; j < n; ++j) on[i][j] = -1;
cnt[i] = 0;
}
}
int hasEdge(int u, int v) {
if (u > v) swap(u, v);
if (on[u][v] != -1) return on[u][v];
return on[u][v] = (++cnt[v] == v);
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |