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"
#include <bits/stdc++.h>
using namespace std;
vector<int> f;
vector<vector<int>> cnt;
int nn;
void initialize(int n) {
f.resize(n, 0);
cnt.resize(n, vector<int> (n, 0));
nn = n;
}
int hasEdge(int u, int v) {
if(u > v) swap(u, v);
if(!cnt[u][v]) {
f[u] ++ ;
f[v] ++ ;
cnt[u][v] ++ ;
if(f[u] == nn) return 1;
if(f[v] == nn) 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... |