The Suspects POJ - 1611
Posted qingyuyyyyy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了The Suspects POJ - 1611相关的知识,希望对你有一定的参考价值。
#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的主要内容,如果未能解决你的问题,请参考以下文章