题意:给你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;
}