The Suspects
Time Limit: 1000MS   Memory Limit: 20000K
Total Submissions: 18890   Accepted: 9150

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 4
2 1 2
5 10 13 11 12 14
2 0 1
2 99 2
200 2
1 5
5 1 2 3 4 5
1 0
0 0

Sample Output

4
1
1

Source

代码:
#include<iostream>
#include<cstdio>
#define maxn 30002
using namespace std;
int Father[maxn],rank[maxn];
void makeset(int n) //初始化
{
for(int i=;i<n;i++)
{
Father[i]=i; //以自身做根
rank[i]=; //开始高度为1
}
}
int findset(int x)
{
if(x!=Father[x])
{
Father[x]=findset(Father[x]);
}
return Father[x];
} void unionset(int fx,int fy)
{
fx=findset(Father[fx]);
fy=findset(Father[fy]);
if(fx==fy)
return ;
if(rank[fx]>rank[fy])
{
Father[fy]=fx;
rank[fx]+=rank[fy];
}
else
{
Father[fx]=fy;
rank[fy]+=rank[fx];
}
}
int main()
{
int n,m,k,st,num;
while(scanf("%d%d",&n,&m),n+m)
{
makeset(n);
while(m--)
{
scanf("%d%d",&k,&st);
while(--k)
{
scanf("%d",&num);
unionset(st,num);
}
}
printf("%d\n",rank[findset()]);
}
return ;
}

最新文章

  1. JavaScript第一天 改变DIV的样式
  2. mysql中数据类型的取值范围
  3. [整理]VS2013常用插件
  4. Cobbler自动化批量安装linux服务器的操作记录
  5. 删除自带OpenJDK
  6. SSH原理与运用(二):远程操作与端口转发
  7. 查看当前web服务器的并发连接数
  8. C#跳出循环的几种方法的区别
  9. vagrant 配置文件简析
  10. node 的 异步 数据库 调用 处理
  11. 小编辑 Java 中十进制和十六进制的相互转换
  12. 显示器 Linux 性能 18 (一个命令行工具传递)
  13. winform自动更新并实现文件的批量异步下载
  14. java poi 导出Excel文件
  15. Django 1.8 - “No migrations to apply” when run migrate after makemigrations 解决办法
  16. JavaScript易错点转载
  17. 使用Tomcat的Reload提高开发速度(翻译)
  18. wing带你玩转自定义view系列(3)模仿微信下拉眼睛
  19. MongoDB分片 在部署和维护管理 中常见事项的总结
  20. 【译著】Code First :使用Entity. Framework编程(5)

热门文章

  1. struts从2.3.X升级到2.5.18中遇到的问题及解决办法
  2. EasyUI Pagination 分页的两种做法
  3. C语言union关键字,union和struct区别
  4. @SpringContext通过实现ApplicationContextAware接口动态获取bean
  5. go语言基础之复合类型
  6. 初识EntityFramework6
  7. require.js 最佳实践
  8. Dijkstra(迪杰斯特拉)算法求解最短路径
  9. Mac下Sublime Text 总是以新窗口打开文件的解决办法
  10. [Big Data] Week4B (Basic)