HDU1829 - A Bug's Life 分组并查集

HDU1829 - A Bug‘s Life : http://acm.hdu.edu.cn/showproblem.php?pid=1829

题意:首先输入T,接下来是T组测试数据。每组测试数据第一行输入N,M代表共有N个人,接下来有M行输入.每行有两个数a和b,代表编号为a和b的两个人是异性。输入结束后判断是否存在错误的信息。如N = 3,M = 3,接下来是3组输入。1  2,2  3,1  3。此组数据是错的,因为1 和 3都和2是异性,说明1 和 3是同性,但第三组数据又说1和3是异性。所以错了,输出“Suspicious
bugs found!”,若没错则输出“No suspicious bugs found!”.这里输出的是主要信息,其他格式不赘述。

代码:

#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
const int MAXN = 2010;
int Father[MAXN],flag;
int T,N,M;
int x,y;
int Case = 0;
void Initial()
{
	for(int i = 0;i < MAXN*2 + 5;i++)
		Father[i] = i;
	flag = 0;
}
int Find(int x)
{
	if(x == Father[x])return x;
	return Father[x] = Find(Father[x]);
	//return x == Father[x] ? x : Find(Father[x]);
}
void Union(int x,int y)
{
	x = Find(x);
	y = Find(y);
	if(x != y)
		Father[x] = y;
}
bool Same(int x,int y)
{
	return Find(x) == Find(y);
}
int main()
{
	scanf("%d",&T);
	while(T--)
	{
		Initial();
		scanf("%d%d",&N,&M);
		for(int i = 0;i < M;i++)
		{
			scanf("%d%d",&x,&y);
			if(flag)continue;
			if(Same(x,y))flag = 1;//判断x,y是否是同性,若输入没错,则输入的是一对异性
			// 1 - N 表示的是男性,N + 1 表示的是女性
			Union(x,y+N);//若x是男性,则y一定是女性
			Union(x+N,y);//若x是女性,则y一定是男性
		}
		printf("Scenario #%d:\n",++Case);
		if(flag)printf("Suspicious bugs found!\n\n");
		else printf("No suspicious bugs found!\n\n");
	}
	return 0;
}

PS:此题是POJ上题名为"食物链"的简化版本,有兴趣的可以去做做这题,思路是一样的.

版权声明:本文为博主原创文章,未经博主允许不得转载。

HDU1829 - A Bug's Life 分组并查集

时间: 2024-12-10 01:31:56

HDU1829 - A Bug's Life 分组并查集的相关文章

hdu1829 A Bug&#39;s Life (并查集)

转载请注明出处:http://blog.csdn.net/u012860063?viewmode=contents 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1829 Problem Description Background Professor Hopper is researching the sexual behavior of a rare species of bugs. He assumes that they feature t

hdu 1829 A Bug&#39;s Life(分组并查集(偏移量))

A Bug's Life Time Limit: 15000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 9204    Accepted Submission(s): 2961 Problem Description Background Professor Hopper is researching the sexual behavior of a rare sp

分组并查集 hdu 1829

A Bug's Life Time Limit: 15000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 10063    Accepted Submission(s): 3288 Problem Description Background Professor Hopper is researching the sexual behavior of a rare

hdu 1829 A Bug&#39;s Life (基础并查集)

题目: 链接:点击打开链接 题意: 给定虫子的交配关系,确定实验是否支持教授的假设即没有同性恋或者不符合假设. 思路: 是一道基础的并查集题目.存在两个集合异性和同性,给出多组关系,看这两个集合有木有联系,即是否有同性恋. 定义一个数组sex[],sex[i]表示与编号i的性别相反的虫子编号.然后将和i虫子有联系的合并为同一个集合(认为是同性的).如果findset(u) == findset(v),出现了反常行为. 代码: #include <iostream> #include <c

【转】POJ 2492 A Bug&#39;s Life:基础并查集进阶

思路参考这里(较详细) 一开始总是WA调了一晚上原来···Init初始化写在scanf上面了···哎╮(╯▽╰)╭anyway!对并查集的理解更深了一步! #include<cstdio> #include<cstring> using namespace std; #define Size 2000 struct node { int Pre; int Relation;// 与父节点的关系 0同性 1异性 }Bug[Size+1]; int N, M; bool found;

HDU 1829 A Bug&#39;s Life (并查集)

题目链接:请戳这里. 题目大意及思路:给定n个Bugs(shen me gui)和m对Bugs之间的关系,假定关系是两个Bugs的男女关系,那么问存不存在同性恋的情况. 那么若a与b是男女关系,b与c是男女关系,那么a和c的性别我们就可以认为是相同的.我们用可以建立两个并查集,一类放男男关系,一类放女女关系. 那么若男男关系中出现了环的情况(即有共同的根),那么同性恋关系就出现了. #include<iostream> #include<cstdio> #include<cs

POJ2492 A Bug&#39;s Life 【并查集】

A Bug's Life Time Limit: 10000MS   Memory Limit: 65536K Total Submissions: 29011   Accepted: 9451 Description Background Professor Hopper is researching the sexual behavior of a rare species of bugs. He assumes that they feature two different genders

HDU 1829 &amp;&amp; POJ 2492 A Bug&#39;s Life(种类并查集)

题目地址:HDU 1829     POJ 2492 这个题可以用两种方法做,第一眼看完题是觉得用dfs染色判断二分图.然后又写的刚学的种类并查集.原来并查集可以这样用,真是神奇.. dfs染色代码: #include <iostream> #include <cstdio> #include <string> #include <cstring> #include <stdlib.h> #include <math.h> #incl

【POJ】2492 A bug&#39;s life ——种类并查集

A Bug's Life Time Limit: 10000MS   Memory Limit: 65536K Total Submissions: 28211   Accepted: 9177 Description Background Professor Hopper is researching the sexual behavior of a rare species of bugs. He assumes that they feature two different genders