博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj 1611 The Suspects
阅读量:2439 次
发布时间:2019-05-10

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

The Suspects
Time Limit: 1000MS   Memory Limit: 20000K
Total Submissions: 23545   Accepted: 11477

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

题意:有很多组学生,其中0是携带者,那么和携带者一组的人都是携带者,问有多少个携带者?

解题思路:并查集;

参考代码:

#include 
#include
using namespace std;int father[30000+1],rank[30000+1];void init(int n){ for (int i=0;i<=n;i++){ father[i]=i; rank[i]=1; }}int find(int x){ if (x!=father[x]) father[x] = find(father[x]); //路径压缩 return father[x];}void Union(int x,int y){ int i=find(x); int j=find(y); if (i==j) return; if (rank[i]
>n>>m){ if (n==0&&m==0) break; if (m==0){ cout<<1<
>k; if (k==0) continue; int first,second; cin>>first; if (k==1){ Union(first,first); continue; } for (int j=1;j
>second; Union(first,second); } } int count=0; for (int i=0;i

转载地址:http://wfbqb.baihongyu.com/

你可能感兴趣的文章
PostgreSQL 源码解读(44)- 查询语句#29(等价类相关数据结构)
查看>>
PostgreSQL 源码解读(48)- 查询语句#33(query_planner函数#9)
查看>>
PostgreSQL 源码解读(45)- 查询语句#30(query_planner函数#6)
查看>>
PostgreSQL 源码解读(47)- 查询语句#32(query_planner函数#8)
查看>>
PostgreSQL 源码解读(17)- 查询语句#2(查询优化基础)
查看>>
Windows Vista内置趣味实用工具大搜罗(转)
查看>>
FreeBSD安装文件系统(转)
查看>>
最简单FreeBSD网关方案(转)
查看>>
Windows 98 多用户的管理(转)
查看>>
更改Windows XP 的日期和时间(转)
查看>>
windows2000中的“秘密武器”(三)(转)
查看>>
Linux程序应用开发环境和工具经验谈(转)
查看>>
Linux办公一条龙之电子表格Calc(转)
查看>>
在NETBSD上配置ADSL+IPF+IPNAT(转)
查看>>
Windows 98 使用维护向导(转)
查看>>
用win2000收发传真(转)
查看>>
Linux办公一条龙之初识OpenOffice(转)
查看>>
Linux上安装GCC编译器过程(转)
查看>>
使用Windows XP 的任务计划(转)
查看>>
Linux分区工具的使用方法(转)
查看>>