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>
#define endl '\n'
#include "game.h"
using namespace std;
int br[2005][2005],n;
void initialize(int N)
{
n=N;
}
int hasEdge(int u,int v)
{
int h=0;
for(int i=1;i<=n;i++)
{
br[i][u]++;
br[i][v]++;
if(br[i][u]==n-1||br[i][v]==n-1)h=1;
}
if(h)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... |