이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <bits/stdc++.h>
#define N 1500
using namespace std;
int par[N];
int cnt[N][N];
int find(int a){
if(a == par[a])return a;
return par[a] = find(par[a]);
}
int n;
void initialize(int n){
::n = n;
for(int i = 0;i<n;i++){
par[i] = i;
for(int j = 0;j<n;j++){
cnt[i][j] = i != j;
}
}
}
int hasEdge(int u, int v){
int tot = 0;
for(int i = 0;i<n;i++){
if(find(i) == find(v)){
tot += cnt[find(u)][i];
}
}
cnt[find(u)][v]--;
cnt[find(v)][u]--;
if(tot > 1){
return 0;
}
for(int i = 0;i<n;i++){
cnt[find(u)][i] += cnt[find(v)][i];
}
par[find(v)] = find(u);
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... |