HDU1829(种类并查集)
Posted 只有你
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU1829(种类并查集)相关的知识,希望对你有一定的参考价值。
ps:本来是想找个二分图判断的题来写,结果百度到这鬼题
Professor Hopper is researching the sexual behavior of a rare species of bugs. He assumes that they feature two different genders and that they only interact with bugs of the opposite gender. In his experiment, individual bugs and their interactions were easy to identify, because numbers were printed on their backs.
Problem
Given a list of bug interactions, decide whether the experiment supports his assumption of two genders with no homosexual bugs or if it contains some bug interactions that falsify it.
#include<cstdio>
using namespace std;
#define max_n 2020*2
int par[max_n];
void init(int n)
{
for(int i=1;i<=n;i++)
{
par[i]=i;
}
}
int find(int x)
{
if(par[x]==x) return x;
else
{
return par[x]=find(par[x]);
}
}
bool same(int x,int y)
{
return find(x)==find(y);
}
void unit(int x,int y)
{
int fx=find(x);
int fy=find(y);
if(fx==fy) return ;
par[fx]=fy;
}
int main()
{
int t;
scanf("%d",&t);
for(int i=1;i<=t;i++)
{
int flag=0;
int n,m;
scanf("%d%d",&n,&m);
init(n*2);
for(int j=0;j<m;j++)
{
int x,y;
scanf("%d%d",&x,&y);
if(same(x,y)||same(x+n,y+n))
{
printf("Scenario #%d:\nSuspicious bugs found!\n\n",i);
flag=1;
break;
}
else
{
unit(x,y+n);
unit(x+n,y);
}
}
if(flag==0)
{
printf("Scenario #%d:\nNo suspicious bugs found!\n\n",i);
}
}
return 0;
}
以上是关于HDU1829(种类并查集)的主要内容,如果未能解决你的问题,请参考以下文章
带权并查集(含种类并查集)经典模板 例题:①POJ 1182 食物链(经典)②HDU - 1829 A bug's life(简单) ③hihoCoder 1515 : 分数调查(示例代码(代