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

POJ1161(并查集)

时间:2014-08-16 23:37:01      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   strong   for   

1、题目链接地址

  http://poj.org/problem?id=1161

2、源代码

#include <iostream>
using namespace std;
int parent[30001];
int suspect[30001];
 
int find(int x)
{
   if(parent[x] == x)
   {
      return x;
   }
   else
   {
      return parent[x] = find(parent[x]);
   }
}
 
void Union(int a, int b)
{
   int x = find(a);
   int y = find(b);
   if(x == y)
   {
      return;
   }
   parent[y] = x;
   suspect[x] = suspect[x] + suspect[y];
}
 
int main()
{
   int m, n;
   int a, b, c;
   int x;
   int i;
   while(cin >> m >> n)
   {
      if(m == 0 && n == 0)
      {
          break;
      }
      
      for(i = 0; i <= m; i++)
      {
        parent[i] = i;
        suspect[i] = 1;
      }
      
      while(n--)
      {
        cin >> a >> b;
        a--;
        while(a--)
        {
           cin >> c ;
           if(find(c) != find(b))
           {
               Union(c, b);
           }
        }
      }
 
      cout << suspect[find(0)] << endl;
   }
   return 0;
}

 

POJ1161(并查集),布布扣,bubuko.com

POJ1161(并查集)

标签:style   blog   http   color   os   io   strong   for   

原文地址:http://www.cnblogs.com/tianxue/p/3917018.html

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