이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
struct DSU{
int n, dsu[1511], a[1511][1511];
void init(int n){
DSU::n = n;
for(int i = 0; i < n; i++){
dsu[i] = i;
}
for(int i = 0; i < n; i++){
for(int j = 0; j < n; j++){
if(i != j) a[i][j] = 1;
}
}
}
int f(int x){
return x == dsu[x] ? x : dsu[x] = f(dsu[x]);
}
bool g(int x, int y){
x = f(x), y = f(y);
if(x == y) return false;
if(a[x][y] > 1) {
a[x][y]--; a[y][x]--; return false;
}else{
dsu[x] = y;
for(int i = 0; i < n; i++){
if(f(i) == i && f(i) != y){
a[i][y] += a[i][x];
a[y][i] += a[x][i];
}
}
}
return true;
}
} dsu;
void initialize(int n) {
dsu.init(n);
}
int hasEdge(int u, int v) {
return dsu.g(u, v);
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |