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>
#include "game.h"
//#define maxn
using namespace std;
int dsu[2505];
int ima[2505][2505];
vector<int> graf[2505];
bool bio[2505];
int n;
void init(){
for(int i=1; i<=n; i++)dsu[i] = i;
}
int findpar(int x){
if(x == dsu[x])return x;
return dsu[x] = findpar(dsu[x]);
}
int uk = 0;
void unite(int x, int y){
uk--;
int a = findpar(x);
int b = findpar(y);
dsu[a] = b;
}
void dfs(int x){
bio[x] = 1;
for(int i=1; i<=n; i++){
if(!bio[i]){
if(ima[x][i] != 2)dfs(i);
}
}
}
void probaj(int src){
for(int i=1; i<=n; i++)bio[i] = 0;
dfs(src);
}
void initialize(int m) {
n = m;
uk = n;
init();
}
int hasEdge(int u, int v) {
u++;
v++;
probaj(u);
if(bio[v]){
ima[u][v] = ima[v][u] = 2;
return 0;
}
else{
ima[u][v] = ima[v][u] = 1;
return 1;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |