# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
92190 | CPX | Game (IOI14_game) | C++14 | 2 ms | 376 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"
bool vis[2000][2000];
int val[2000][2000];
int ctr[2000];
int n;
void initialize(int n) {
::n=n;
}
int hasEdge(int u, int v) {
if(vis[u][v])return val[u][v];
vis[u][v]=vis[v][u]=1;
ctr[u]++;
ctr[v]++;
if(ctr[u]==n-1||ctr[v]==n-1&&(ctr[u]<n&&ctr[v]<n)){
val[u][v]=val[v][u]=1;
return 1;
}else{
val[u][v]=val[v][u]=0;
return 0;
}
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |