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 c=0,a=0;
void initialize(int n) {
c=0;a=0;
}
int hasEdge(int u, int v) {
a++;
if(u>v){ int t=u; u=v; v=t;}
if(u==0 && v==1) { c++; return 1;}
if(u==2 && v==3) { c++; return 1;}
if(a==4 && c==0) { c++; return 1;}
if(a==5 && c==1) { c++; 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... |