이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define maxn 1505
using namespace std;
int n;
int sz[maxn],p[maxn];
int uk=0;
void initialize(int N)
{
n=N;
for(int i=0;i<n;i++)
{
sz[i]=1;
p[i]=i;
}
}
int fnd(int x)
{
if(x==p[x])return x;
p[x]=fnd(p[x]);
return p[x];
}
bool same(int x,int y)
{
return fnd(x)==fnd(y);
}
void unite(int x,int y)
{
x=fnd(x);
y=fnd(y);
if(sz[x]<sz[y])swap(x,y);
sz[x]+=sz[y];
p[y]=x;
}
int hasEdge(int u,int v)
{
if(same(u,v))return 0;
u=fnd(u);
v=fnd(v);
if(sz[u]+sz[v]<n)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... |