# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1146937 | Seb | Game (IOI14_game) | C++17 | 0 ms | 328 KiB |
#include "game.h"
#include <bits/stdc++.h>
int deg[1505];
void initialize(int n) {
for (int i = 0; i < n; i++) deg[i] = n - 1;
}
int hasEdge(int u, int v) {
deg[u]--; deg[v]--;
if (!deg[u] || !deg[v]) return 1;
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... |