POJ 2492 (简单并查集) A Bug's Life

题意:有编号为1~n的虫子,开始假设这种昆虫是异性恋。然后已知xi 和 yi进行交配,根据已知情况分析能否推理出其中是否有同性恋

这道题和 POJ 1182 食物链 十分相似,不过在更新与父节点关系的时候要简单一些

sex数组保存的是与父节点的性别关系,如果与父节点是同性,则为0,否则是1

每次路径压缩的同时要更新sex[a] = (sex[a] + sex[temp]) % 2;

还有就是如果x 和 y 不在一个集合,两棵树进行合并的时候,考虑x px y py 四者之间的关系,有

parent[px] = py;
sex[px] = 1 - (sex[x] ^ sex[y]);

这个在纸上模拟一下就很容易得出来

在敲代码的过程中还是犯了两个低级的小错误,因为一旦我们发现了存在同性恋,便可以输出结果了,不过要对剩余未读入的数据“忽略”

因为i可能是break出来的,这次循环没有完成,i也没有自增,所以在“忽略”的循环里面,i首先要自增一下

 1 //#define LOCAL
 2 #include <iostream>
 3 #include <cstdio>
 4 #include <cstring>
 5 using namespace std;
 6
 7 const int maxn = 2000 + 10;
 8 int parent[maxn], sex[maxn];
 9
10 int GetParent(int a)
11 {
12     if(parent[a] == a)    return a;
13     int temp = parent[a];
14     parent[a] = GetParent(parent[a]);
15     sex[a] = (sex[a] + sex[temp]) % 2;
16     return parent[a];
17 }
18
19 int main(void)
20 {
21     #ifdef LOCAL
22         freopen("2492in.txt", "r", stdin);
23     #endif
24
25     int T, kase;
26     scanf("%d", &T);
27     for(kase = 1; kase <= T; ++kase)
28     {
29         int n, m, i;
30         int x, y;
31         bool flag = false;
32         scanf("%d%d", &n, &m);
33         for(int i = 0; i <= n; ++i)
34         {
35             parent[i] = i;
36             sex[i] = 0;
37         }
38         for(i = 0; i < m; ++i)
39         {
40             scanf("%d%d", &x, &y);
41             int px = GetParent(x);
42             int py = GetParent(y);
43             if(px == py)
44             {
45                 if(sex[x] == sex[y])
46                 {
47                     flag = true;
48                     break;
49                 }
50             }
51             else
52             {
53                 parent[px] = py;
54                 sex[px] = 1 - (sex[x] ^ sex[y]);
55             }
56         }
57         for(++i; i < m; ++i)
58             scanf("%d%d", &x, &y);
59         printf("Scenario #%d:\n%suspicious bugs found!\n\n", kase, flag ? "S" : "No s");
60         //if(kase < T)    printf("\n");
61     }
62     return 0;
63 }

代码君

POJ 2492 (简单并查集) A Bug's Life

时间: 2024-10-04 18:48:05

POJ 2492 (简单并查集) A Bug's Life的相关文章

POJ 2236 (简单并查集) Wireless Network

题意: 有n个电脑坏掉了,分别给出他们的坐标 有两种操作,可以O x表示修好第x台电脑,可以 S x y表示x y是否连通 两台电脑的距离不超过d便可连通,两台电脑是连通的可以直接连通也可以间接通过第三台电脑连通 思路: 每次修好一台电脑都和前面已经修好的电脑比较一下如果距离小于d而且不在同一网络,便合并在一起即可 1 //#define LOCAL 2 #include <iostream> 3 #include <cstdio> 4 #include <cstring&g

POJ 2524 Ubiquitous Religions (简单并查集,三种方式)

Ubiquitous Religions Time Limit: 5000MS   Memory Limit: 65536K Total Submissions: 30791   Accepted: 14928 Description There are so many different religions in the world today that it is difficult to keep track of them all. You are interested in findi

POJ - 2236 Wireless Network(简单并查集)

Wireless Network Time Limit: 10000MS   Memory Limit: 65536KB   64bit IO Format: %I64d & %I64u Submit Status Description An earthquake takes place in Southeast Asia. The ACM (Asia Cooperated Medical team) have set up a wireless network with the lap co

POJ - 2524 Ubiquitous Religions(简单并查集)

Ubiquitous Religions Time Limit: 5000MS   Memory Limit: 65536KB   64bit IO Format: %I64d & %I64u Submit Status Description 当今世界有很多不同的宗教,很难通晓他们.你有兴趣找出在你的大学里有多少种不同的宗教信仰. 你知道在你的大学里有n个学生(0 < n <= 50000) .你无法询问每个学生的宗教信仰.此外,许多学生不想说出他们的信仰.避免这些问题的一个方法是问

【简单并查集】Farm Irrigation

Farm Irrigation Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 65536/32768K (Java/Other) Total Submission(s) : 6   Accepted Submission(s) : 3 Font: Times New Roman | Verdana | Georgia Font Size: ← → Problem Description Benny has a spacious fa

poj1611 简单并查集

The Suspects Time Limit: 1000MS   Memory Limit: 20000K Total Submissions: 32781   Accepted: 15902 Description Severe acute respiratory syndrome (SARS), an atypical pneumonia of unknown aetiology, was recognized as a global threat in mid-March 2003. T

HDU 1272 简单并查集

小希的迷宫 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 24915    Accepted Submission(s): 7641 Problem Description 上次Gardon的迷宫城堡小希玩了很久(见Problem B),现在她也想设计一个迷宫让Gardon来走.但是她设计迷宫的思路不一样,首先她认为所有的通道都应该是双

poj2524(简单并查集)

#include <iostream>#include <stdio.h>#include <string.h>#include <stdlib.h>using namespace std;int n,m;int bin[50001];int findx(int x){    int r=x;    while(r!=bin[r])        r=bin[r];    int j=x,k;    while(j!=r)    {        k=bin

POJ - Colored Sticks - 并查集+字典树

这道题主要还是要判断是不是欧拉图 说白了就是能不能这幅图能不能用一笔画下来,那么就可以知道了,如果是一个环状的,说明奇数度就不存在,否则就只能用两个奇数度(起点终点)//我的理解这是 只需要用字典树将单词变为对应的一个数字,然后并查集操作就可以,需要维护一个度变量 #include<stdio.h> #include<string.h> int du[500010],p[500010]; int tot=1; struct tree { tree *next[30]; int id