概述
并查集问题。
题意是说: 编号0 可能感染SARS。
然后有M个 团队,团队的人可能互相感染。
找出所有可能感染的SARS人。
把某个团队的并起来就好了。最后扫描一遍。
#include<cstdio>
#include<cstring>
#include<string>
#include<queue>
#include<algorithm>
#include<queue>
#include<map>
#include<stack>
#include<iostream>
#include<list>
#include<set>
#include<cmath>
#define INF 0x7fffffff
#define eps 1e-6
using namespace std;
int n,m;
int fa[30001];
int father(int x)
{
if(x!=fa[x])
return fa[x]=father(fa[x]);
}
int main()
{
while(scanf("%d%d",&n,&m),n||m)
{
for(int i=0;i<=n;i++)
fa[i]=i;
while(m--)
{
int t,u,v;
scanf("%d",&t);
if(!t)continue;
scanf("%d",&u);
u=father(u);
while(--t)
{
scanf("%d",&v);
v=father(v);
if(u==v)continue;
fa[v]=u;
}
}
int ans=0;
int s=father(0);
for(int i=0;i<=n;i++)
if(father(i)==s)ans++;
printf("%dn",ans);
}
}
最后
以上就是简单铃铛为你收集整理的POJ 1611 The Suspects的全部内容,希望文章能够帮你解决POJ 1611 The Suspects所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复