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) {}
int hasEdge(int u, int v) {
if (u > v) swap(u, v);
if (on[u][v]) return on[u][v] - 1;
return (on[u][v] = (++cnt[v] == v) + 1) - 1;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |