博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj1611 简单并查集
阅读量:5054 次
发布时间:2019-06-12

本文共 2666 字,大约阅读时间需要 8 分钟。

The Suspects
Time Limit: 1000MS   Memory Limit: 20000K
Total Submissions: 32781   Accepted: 15902

Description

Severe acute respiratory syndrome (SARS), an atypical pneumonia of unknown aetiology, was recognized as a global threat in mid-March 2003. To minimize transmission to others, the best strategy is to separate the suspects from others.
In the Not-Spreading-Your-Sickness University (NSYSU), there are many student groups. Students in the same group intercommunicate with each other frequently, and a student may join several groups. To prevent the possible transmissions of SARS, the NSYSU collects the member lists of all student groups, and makes the following rule in their standard operation procedure (SOP).
Once a member in a group is a suspect, all members in the group are suspects.
However, they find that it is not easy to identify all the suspects when a student is recognized as a suspect. Your job is to write a program which finds all the suspects.

Input

The input file contains several cases. Each test case begins with two integers n and m in a line, where n is the number of students, and m is the number of groups. You may assume that 0 < n <= 30000 and 0 <= m <= 500. Every student is numbered by a unique integer between 0 and n−1, and initially student 0 is recognized as a suspect in all the cases. This line is followed by m member lists of the groups, one line per group. Each line begins with an integer k by itself representing the number of members in the group. Following the number of members, there are k integers representing the students in this group. All the integers in a line are separated by at least one space.
A case with n = 0 and m = 0 indicates the end of the input, and need not be processed.

Output

For each case, output the number of suspects in one line.

Sample Input

100 42 1 25 10 13 11 12 142 0 12 99 2200 21 55 1 2 3 4 51 00 0

Sample Output

411 解析见代码:
/*题目大意:有n个人,编号0~n-1,其中0号可能携带有病毒和他在一个团体里的人也可能有病毒,同时也是病毒传染者,问你一共有多少个人可能携带病毒思路分析:简单并查集,将元素合并为若干个集合,注意在merge过程中同时维护该集合中的人数,最后输出0号所在的集合的人数即可*/#include 
#include
#include
#include
#include
using namespace std;const int maxn=30000+100;int father[maxn];int total[maxn];//合并集合的时候需要将两个集合中的元素数目同时进行合并int ans;int n,m;int findroot(int x){ return (x==father[x])?x:father[x]=findroot(father[x]);}void merge(int a,int b){ int x=findroot(a); int y=findroot(b); if(x==y) return;//两者在同一个集合里 total[x]+=total[y]; father[y]=x;}int main(){ while(scanf("%d%d",&n,&m)&&(n||m)) { for(int i=0;i

 

转载于:https://www.cnblogs.com/xuejianye/p/5699398.html

你可能感兴趣的文章
扒一扒spring,dom4j实现模拟实现读取xml
查看>>
公司培训lesson 1-代码质量
查看>>
JavaScript 仿LightBox内容显示效果
查看>>
python 字符串处理
查看>>
Do it early, do it often, do it automatically (转)
查看>>
Linux curl使用简单介绍
查看>>
CSDN可以直接扣扣登录.....如需查看我的博客去CSDN
查看>>
App弱网测试方式
查看>>
PHP zendstudio framework2配置过程
查看>>
Xor Sum 01字典树 hdu4825
查看>>
数据访问:三大范式
查看>>
Python基础-----random随机模块(验证码)
查看>>
手机端fixed底部跟着窗口动问题
查看>>
树专题(伸展树 / 树链剖分 / 动态树 学习笔记)
查看>>
HTML图像、超链接标签
查看>>
[国嵌攻略][164][USB驱动程序设计]
查看>>
C# 实现Bresenham算法(vs2010)
查看>>
基于iSCSI的SQL Server 2012群集测试(一)--SQL群集安装
查看>>
list 容器 排序函数.xml
查看>>
存储开头结尾使用begin tran,rollback tran作用?
查看>>