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 lft[1510] , total , ni , ok , put , taken[1510];
void initialize (int n){
for (int i = 0 ; i < n ; i++){
lft[i] = n - i - 1;
}
}
int hasEdge (int u , int v){
int aux;
if (u > v){
aux = u;
u = v;
v = aux;
}
lft[u]--;
if (!lft[u])
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... |