hdu1829(种类并查集)

题意:给你n个虫,输入m行a,b,表示a和b是异性,要你判断是否有同性恋;

这是一道种类并查集题,对于一个并查集新手的我还是觉得有点难度的。

种类并查集的关键:当前节点到他的根节点的距离

在这道题中,如果到根节点的距离是奇数说明是异性,偶数说明是同性,即同性恋,

利用rank数组记录到根节点的距离,比如rand[x] 表示x 到 f[x] 的  距离&1

下面是代码:

#include<iostream>
#include<algorithm>
#include<string>
#include<stack>
#include<queue>
#include<set>
#include<map>
#include<stdio.h>
#include<stdlib.h>
#include<ctype.h>
#include<time.h>
#include<math.h>

#define N 2005
#define eps 1e-9
#define pi acos(-1.0)
#define P system("pause")
using namespace std;
int f[N],rank[N];
int flag;
/*int find(int x)
{
    if(x == f[x]) return x;
   // int t = f[x];
    rank[x] = (rank[x] + rank[f[x]])&1;
    return f[x] = find(f[x]);     
}*/
int find(int x)
{
    if(x == f[x]) return x;
    int t = find(f[x]);
    rank[x] = (rank[x] + rank[f[x]])&1;
    return f[x] = t;;
         
}

void Union(int a,int b)
{
             int x,y;
             x = find(a);
             y = find(b);
             if(x == y)
             {
                  if(rank[a] == rank[b])
                    flag = 1;    
             }     
             else
             {
                  f[x] = y;
                  rank[x] = (rank[a] + rank[b] + 1)&1;    
             }      
}
int main()
{
//freopen("input.txt","r",stdin);
//freopen("output.txt","w",stdout);
    int t,z = 1;
    scanf("%d",&t);
    while(t--)
    {
        int n,m;
        scanf("%d%d",&n,&m);
        int i;
              
        flag = 0; 
        for(i = 0; i <= n ;i++)
        {
              f[i] = i;
              rank[i] = 0;
        }
        int a,b;
        for(i = 0; i < m; i++)
        {
             scanf("%d%d",&a,&b);
             if(flag) continue;
             Union(a,b);   
        }
        printf("Scenario #%d:\n",z++);
        if(flag) printf("Suspicious bugs found!\n");
        else printf("No suspicious bugs found!\n");
        printf("\n");                         
    }
  //  P;                               
    return 0;    
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值