码迷,mamicode.com
首页 > Windows程序 > 详细

Acwing 837. 连通块中点的数量 (裸题,并查集求连通块中点数目)

时间:2020-11-13 12:55:15      阅读:26      评论:0      收藏:0      [点我收藏+]

标签:image   str   inf   地址   loading   color   out   while   std   

地址:https://www.acwing.com/problem/content/839/

技术图片

技术图片

只是记录个板子,不做解析。

#include<cstdio>
#include<cstring>
#include<vector>
#include<algorithm>
#include<iostream>
#include<vector>
using 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<=n;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;
            cout<<num[find(a)]<<endl;
        }
    }
}

 

Acwing 837. 连通块中点的数量 (裸题,并查集求连通块中点数目)

标签:image   str   inf   地址   loading   color   out   while   std   

原文地址:https://www.cnblogs.com/liyexin/p/13916552.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!