码迷,mamicode.com
首页 > 其他好文 > 详细

The Suspects POJ - 1611

时间:2020-02-01 16:15:56      阅读:50      评论:0      收藏:0      [点我收藏+]

标签:||   mes   cin   res   col   name   namespace   The   color   

#include<iostream>
using namespace std;
const int N=30010;
int n,m,ans,p[N];
int find(int x)
{
    if(p[x]!=x)
        p[x]=find(p[x]);
    return p[x];
}
int main()
{
    while(cin>>n>>m,m||n)
    {
        int res=0;
        for(int i=0;i<=n;i++)
            p[i]=i;
        int num,fa;
        int temp;
        for(int i=0;i<m;i++)
        {
            cin>>num>>fa;
            fa=find(fa);
            num--;
            while(num--)
            {
                cin>>temp;
                p[find(temp)]=fa;
            }
        }
        int check=find(0);
        for(int i=0;i<=n;i++)
            if(find(i)==check)
                res++;
        cout<<res<<endl;
    }
}

 

The Suspects POJ - 1611

标签:||   mes   cin   res   col   name   namespace   The   color   

原文地址:https://www.cnblogs.com/QingyuYYYYY/p/12248655.html

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