pat甲级 1118 Birds in Forest (25分)

pat甲级 1118 Birds in Forest (25分)

note:并查集+路径压缩

#include <iostream>
#include <unordered_set>
using namespace std;
int pre[10005],isRoot[10005]={0};
unordered_set<int> s;//去重不排序,节省运行时间

int findpre(int x)
{
    int a=x;
    while(x!=pre[x]) x=pre[x];
    //路径压缩
    while(a!=pre[a])
    {
        int z=a;
        a=pre[a];
        pre[z]=x;
    }
    return x;
}

void Union(int a,int b)
{
    int A=findpre(a);
    int B=findpre(b);
    if(A!=B) pre[B]=A;
}

int main()
{
    int n,k,id,temp,q,tree=0;
    cin>>n;
    for(int i=0;i<10005;++i) pre[i]=i;//预处理
    for(int i=0;i<n;++i)
    {
        cin>>k;
        for(int j=0;j<k;++j)
        {
            cin>>id;
            if(!j) temp=id;
            else Union(temp,id);//合并
            s.insert(id);
        }
    }
    for(auto i:s) 
    {
        int t=findpre(i);//避免重复运算,降低运行时间
        if(!isRoot[t]) ++tree;
        ++isRoot[t];
    }
    cout<<tree<<' '<<s.size()<<endl;
    cin>>q;
    for(int i=0;i<q;++i)
    {
        cin>>id>>temp;
        printf("%s\n",findpre(id)==findpre(temp)?"Yes":"No");
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值