HDU 1829 并查集

A Bug‘s Life

Time Limit: 15000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 8224    Accepted Submission(s): 2631

Problem Description

Background 
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.

Input

The first line of the input contains the number of scenarios. Each scenario starts with one line giving the number of bugs (at least one, and up to 2000) and the number of interactions (up to 1000000) separated by a single space. In the following lines, each interaction is given in the form of two distinct bug numbers separated by a single space. Bugs are numbered consecutively starting from one.

Output

The output for every scenario is a line containing "Scenario #i:", where i is the number of the scenario starting at 1, followed by one line saying either "No suspicious bugs found!" if the experiment is consistent with his assumption about the bugs‘ sexual behavior, or "Suspicious bugs found!" if Professor Hopper‘s assumption is definitely wrong.

Sample Input

2

3 3

1 2

2 3

1 3

4 2

1 2

3 4

Sample Output

Scenario #1:

Suspicious bugs found!

Scenario #2:

No suspicious bugs found!

这道题很像算法艺术与分析上的并查集那一部分的第二题。。额。。好像是这道题。。

假设a 和b 是异性,b和c是异性, 那么a和c就是同性,所以所有的虫子分成两部分即a的同性,和a的异性。

那么可以用数组存储和a同性的,数组为Q[],那么就有Q[a]=b。若又出现a和d是异性,那么就把Q[a]和d并在一棵树里即unsion(Q[a],d),因为是相互的,所以也有unsion(Q[d],a);

最终就成了两个集合,若输入a b在同一集合中就意味着a和b是同性恋。。。

代码:

 1 #include <stdio.h>
 2 #include <string.h>
 3 #include <algorithm>
 4 #include <queue>
 5 #include <iostream>
 6 using namespace std;
 7
 8 int father[1000005];
 9 int Q[1000005];
10
11 int findroot(int p)
12 {
13     int r=p;
14     while(r!=father[r])
15     r=father[r];
16     return r;
17 }
18
19 void unsion(int p,int q)
20 {
21     int fp=findroot(p);
22     int fq=findroot(q);
23     father[fq]=fp;
24 }
25 main()
26 {
27     int n, m, i, j, k=1;
28     int t;
29     cin>>t;
30     while(t--)
31     {
32         scanf("%d %d",&n,&m);
33         int flag=0, x, y;
34         for(i=1;i<=n;i++) father[i]=i;
35         memset(Q,0,sizeof(Q));
36         while(m--)
37         {
38             scanf("%d %d",&x,&y);
39             if(flag) continue;
40             int fx=findroot(x);
41             int fy=findroot(y);
42             if(fx==fy)
43             {
44                 flag=1;
45                 continue;
46             }
47             if(!Q[x]) Q[x]=y;
48             else unsion(Q[x],y);
49             if(!Q[y]) Q[y]=x;
50             else unsion(Q[y],x);
51         }
52         printf("Scenario #%d:\n",k++);
53         if(flag) cout<<"Suspicious bugs found!"<<endl<<endl;
54         else cout<<"No suspicious bugs found!"<<endl<<endl;
55     }
56 }

HDU 1829 并查集

时间: 2025-01-02 20:31:18

HDU 1829 并查集的相关文章

hdu 1829 并查集(食物链的弱化版)

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 two different genders and that they only interact with bugs of

HDU 1051 并查集+贪心

Wooden Sticks Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 11694    Accepted Submission(s): 4837 Problem Description There is a pile of n wooden sticks. The length and weight of each stick ar

HDU 1512 并查集+左偏树

Monkey King Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 3105    Accepted Submission(s): 1330 Problem Description Once in a forest, there lived N aggressive monkeys. At the beginning, they e

hdu 4514 并查集+树形dp

湫湫系列故事——设计风景线 Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 65535/32768 K (Java/Others)Total Submission(s): 4539    Accepted Submission(s): 816 Problem Description 随着杭州西湖的知名度的进一步提升,园林规划专家湫湫希望设计出一条新的经典观光线路,根据老板马小腾的指示,新的风景线最好能建成环形,如果没有条件建成环形,

hdu 1856 并查集

http://acm.hdu.edu.cn/showproblem.php?pid=1856 More is better Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 327680/102400 K (Java/Others)Total Submission(s): 13672    Accepted Submission(s): 5008 Problem Description Mr Wang wants some boys

HDU 1181 并查集 or SPFA

变形课 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/65536 K (Java/Others)Total Submission(s): 12773    Accepted Submission(s): 4733 Problem Description 呃......变形课上Harry碰到了一点小麻烦,因为他并不像Hermione那样能够记住所有的咒语而随意的将一个棒球变成刺猬什么的,但是他发现了变形咒语的一个统一规

hdu 1213 并查集入门

题目连接:http://acm.hdu.edu.cn/showproblem.php?pid=1213 How Many Tables Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 12538    Accepted Submission(s): 6145 Problem Description Today is Ignatius' b

HDU 3938 并查集

求小于L的路径点对数(路上的最大值),按权值排序,从小到大并查集建图,有点kruskal的意思. /** @Date : 2017-09-22 17:30:11 * @FileName: HDU 3938 并查集 离线.cpp * @Platform: Windows * @Author : Lweleth ([email protected]) * @Link : https://github.com/ * @Version : $Id$ */ #include <bits/stdc++.h>

hdu 1213 并查集 水

http://acm.hdu.edu.cn/showproblem.php?pid=1213 做到一道网赛题 2-sat可写 貌似并查集也可写  但是并查集做法没想到 先水几道并查集重新理解下然后再去做 学到的就一点  Father数组中有些值一直保持最初的father[x] == x  最终集合的个数可以通过这个判断 #include <cstdio> #include <cstring> #include <algorithm> #include <iostr