이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
struct DSU{
vector<int> v;
vector<vector<int>> deg;
void init(int n){v.assign(n, -1); deg.assign(n, vector<int>(n, 0));}
int get(int x){return v[x] < 0 ? x : v[x] = get(v[x]);}
int unite(int x, int y){
x = get(x); y = get(y);
if(x == y) return 0;
deg[x][y]++; deg[y][x]++;
if(deg[x][y] != v[x] * v[y]) return 0;
if(v[x] > v[y]) swap(x, y);
v[x] += v[y]; v[y] = x;
for(int i = 0; i < (int)v.size(); i++){
if(v[i] < 0){
deg[i][x] += deg[i][y];
deg[x][i] += deg[y][i];
}
}
return 1;
}
};
DSU UF;
void initialize(int n){
UF.init(n);
}
int hasEdge(int u, int v){
return UF.unite(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... |