首页 > 其他 > 详细

kuangbin 并查集 C - How Many Tables HDU - 1213

时间:2019-01-24 18:44:03      阅读:227      评论:0      收藏:0      [点我收藏+]

 

 

 

How Many Tables  hdu-1213

思路:并查集之后找有几个集

技术分享图片
#include<cstdio>
#include<iostream>
#include<algorithm>
#include<cstring>
#include<sstream>
#include<cmath>
#include<stack>
#include<map>
#include<cstdlib>
#include <vector>
#include<queue>
using namespace std;
const int INF = 0x3f3f3f3f;
const int maxn = 1e3+5;

int father[maxn];
void init(int n)
{
    for(int i=1;i<=n;i++)
        father[i] = i;
}
int find(int x)
{
    if(father[x] == x)
        return x;
    else
        return father[x] = find(father[x]);
}
void combine(int x,int y)
{
    x = find(x);
    y = find(y);
    if(x != y)
        father[x] = y;
}
int main()
{
   int t;
   scanf("%d",&t);
   while(t--)
   {
       int n,m;
       scanf("%d %d", &n,&m);
       init(n);
       for(int i=0;i<m;i++)
       {
           int a,b;
           scanf("%d%d",&a,&b);
           combine(a,b);
       }
       int res = 0;
       for(int i=1;i<=n;i++)
           if(i == find(i))
               res++;
       printf("%d\n",res);
   }
}
View Code

 

kuangbin 并查集 C - How Many Tables HDU - 1213

原文:https://www.cnblogs.com/smallhester/p/10316036.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!