码迷,mamicode.com
首页 > 其他好文 > 详细

POJ 1611 The Suspects

时间:2015-09-01 21:30:52      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:

题意:说有n个学生,m个小组,然后0号童鞋感染了sars,跟感染者一组的也认为是感染者了,问一共多少感染者。

 

解法:并查集……

 

代码:

#include<stdio.h>
#include<iostream>
#include<algorithm>
#include<string>
#include<string.h>
#include<math.h>
#include<limits.h>
#include<time.h>
#include<stdlib.h>
#include<map>
#include<queue>
#include<set>
#include<stack>
#include<vector>
#define LL long long
using namespace std;
int father[30005];
int Find(int a)
{
    if(father[a] != a)
        father[a] = Find(father[a]);
    return father[a];
}
void Union(int a, int b)
{
    int c = Find(a), d = Find(b);
    father[c] = d;
}
int main()
{
    int n, m;
    while(~scanf("%d%d", &n, &m) && !(n == 0 && m == 0))
    {
        for(int i = 0; i < n; i++)
            father[i] = i;
        while(m--)
        {
            int k;
            scanf("%d", &k);
            int x;
            if(k--) scanf("%d", &x);
            while(k--)
            {
                int y;
                scanf("%d", &y);
                Union(x, y);
            }
        }
        int root = Find(0);
        int ans = 0;
        for(int i = 0; i < n; i++)
        {
            if(Find(i) == root)
                ans++;
        }
        printf("%d\n", ans);
    }
    return 0;
}

  

POJ 1611 The Suspects

标签:

原文地址:http://www.cnblogs.com/Apro/p/4776858.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!