标签:poj
题意:
有n个学生,m个组,每个学生可能属于多个组,现在0号得了SARS;
和0号一组的也会得,然后和0号一组的人,他所在的组的组员也全会得,问最后总共几个人得了SARS;
思路:
只要加一个权值,就是这个组有多少个人;如r[i]表示i所在的组有多少人;
所以每次并的时候,也要把这个组的人数并过去;
最后数组0所在的组有几个人;
#include<cstdio> #include<cstring> #include<algorithm> using namespace std; const int N = 30000 + 10; int p[N], r[N], n, m; void init(int x) { for(int i = 0; i <= x; i++) { r[i] = 1; p[i] = i; } } int find_p(int x) { return x == p[x] ? x : p[x] = find_p(p[x]); } void Union(int x,int y) { int px = find_p(x); int py = find_p(y); if(px != py) { p[px] = py; r[py] += r[px]; } } int main() { int k,f; while(scanf("%d%d",&n,&m) && (n + m)) { init(n); for(int i = 0; i < m; i++) { scanf("%d",&k); scanf("%d",&f); int tmp; for(int j = 0; j < k - 1; j++) { scanf("%d",&tmp); Union(f,tmp); } } int ans = find_p(0); printf("%d\n",r[ans]); } }
标签:poj
原文地址:http://blog.csdn.net/yeyeyeguoguo/article/details/45483723