# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
65642 | Kubalionzzale | Game (IOI14_game) | C++14 | 0 ms | 0 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 "game.h"
int cnt[1600] = { 0 };
int max = n;
void initialize(int n) {
max = n * (n - 1);
}
int hasEdge(int u, int v) {
if (cnt[u] == max - 2 || cnt[v] == max - 2)
return 1;
else
return 0;
}