Acwing 837. 连通块中点的数量 (裸题,并查集求连通块中点数目)
标签:image str inf 地址 loading color out while std
地址:https://www.acwing.com/problem/content/839/
只是记录个板子,不做解析。
#include
#include
#include
#include
#include
#includeusing namespace std;
const int maxn=1e5+10,maxn2=31*maxn;
int idx=0;
int pr[maxn],num[maxn];
typedef long long ll;
int n,m;
int find(int x)
{
if(x!=pr[x])
{
return pr[x]=find(pr[x]);
}
return x;
}
void add(int a,int b)
{
int fa=find(a);
int fb=find(b);
if(fa!=fb)
{
pr[fb]=fa;
num[fa]+=num[fb];
}
return ;
}
int main()
{
cin>>n>>m;
for(int i=1;i)
pr[i]=i,num[i]=1;
while(m--)
{
char op[3];
scanf("%s",op);
if(op[0]==‘C‘)
{
int a,b;
cin>>a>>b;
add(a,b);
}
else if(op[1]==‘1‘)
{
int a,b;
cin>>a>>b;
if(a==b)
cout"Yes"endl;
else
{
int fa=find(a),fb=find(b);
if(fa==fb)
cout"Yes"endl;
else
cout"No"endl;
}
}
else
{
int a;
cin>>a;
coutendl;
}
}
}
Acwing 837. 连通块中点的数量 (裸题,并查集求连通块中点数目)
标签:image str inf 地址 loading color out while std
原文地址:https://www.cnblogs.com/liyexin/p/13916552.html
评论