# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
142766 | thecodingwizard | 게임 (IOI14_game) | C++11 | 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 <bits/stdc++.h>
#include "game.h"
using namespace std;
int ct[1500];
void initialize(int N) {
F0R(i, N) ct[i] = 0;
}
int hasEdge(int u, int v) {
return ++ct[max(u, v)] == max(u, v);
}