POJ 1161 The Suspects 并查集

xiaoxiao2021-02-28  21

严重急性呼吸系统综合症( SARS), 一种原因不明的非典型性肺炎,从2003年3月中旬开始被认为是全球威胁。为了减少传播给别人的机会, 最好的策略是隔离可能的患者。 在Not-Spreading-Your-Sickness大学( NSYSU), 有许多学生团体。同一组的学生经常彼此相通,一个学生可以同时加入几个小组。为了防止非典的传播,NSYSU收集了所有学生团体的成员名单。他们的标准操作程序(SOP)如下: 一旦一组中有一个可能的患者, 组内的所有成员就都是可能的患者。 然而,他们发现当一个学生被确认为可能的患者后不容易识别所有可能的患者。你的工作是编写一个程序, 发现所有可能的患者。   Input 输入文件包含多组数据。 对于每组测试数据: 第一行为两个整数n和m, 其中n是学生的数量, m是团体的数量。0 < n <= 30000,0 <= m <= 500。 每个学生编号是一个0到n-1之间的整数,一开始只有0号学生被视为可能的患者。 紧随其后的是团体的成员列表,每组一行。 每一行有一个整数k,代表成员数量。之后,有k个整数代表这个群体的学生。一行中的所有整数由至少一个空格隔开。 n = m = 0表示输入结束,不需要处理。 Output 对于每组测试数据, 输出一行可能的患者。 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

分析:简单并查集应用;

AC code:

#include <iostream> #include <algorithm> #include <cstdio> #include <cstring> #include <cmath> #include <cstdlib> #include <vector> #include <queue> #include <stack> #include <string> #include <map> using namespace std; #define LL long long #define INF 0x3f3f3f3f const int MAXN=30000+50; int Pre[MAXN]; void init(int n){ for(int i=0;i<=n-1;i++){ Pre[i]=i; } } int Find(int x){ return Pre[x]==x?x:Pre[x]=Find(Pre[x]); } void Combine(int a,int b){ a=Find(a); b=Find(b); if(a!=b) Pre[a]=Pre[b]; } bool issame(int a,int b){ return Find(a)==Find(b); } int main(){ ios::sync_with_stdio(false); cin.tie(0); int n,m; while(cin>>n>>m){ if(n==0&&m==0) break; init(n); while(m--){ int k,a1,a2; cin>>k>>a1; for(int i=2;i<=k;i++){ cin>>a2; Combine(a1,a2); } } int cnt=0; for(int i=0;i<=n-1;i++){ if(issame(i,0)) cnt++; } cout<<cnt<<endl; } return 0; }

转载请注明原文地址: https://www.6miu.com/read-1400056.html

最新回复(0)