【HDU1325】Is It A Tree?(并查集基础题)

有以下坑点:

1.结束输入不一定-1,题目中的叙述只是说所有权值都为正值。

2.是否构成一棵树不能只判断是否只有一个根节点,没有环路,而且还需要判断每个节点的入度一定是1,不然就不是一棵树。

(无环路也可用树的性质:结点数 = 边树 + 1 来取代)

 1 #include <iostream>
 2 #include <cstdlib>
 3 #include <cstring>
 4 #include <cctype>
 5 #include <cmath>
 6 #include <string>
 7 #include <cstdio>
 8 #include <algorithm>
 9 #include <numeric>
10 using namespace std;
11
12 const int maxn = 25;
13
14 int  father[maxn];
15 int  eage[maxn];
16 bool vis[maxn], flag = 0;
17 int sum = 0;
18
19 int getFather (int x) {
20     while (father[x] != x) {
21         x = father[x];
22     }
23     return x;
24 }
25
26 void Union (int p, int q) {
27     int x = getFather (p);
28     int y = getFather (q);
29     if (x != y) {
30         father[y] = x;
31         sum ++;
32     } else {
33         flag = 0;
34     }
35 }
36
37 int main () {
38     int x, y, cur = 0;
39     while (cin >> x >> y) {
40         if (x < 0 && y < 0) break;
41         if (x == 0 && y == 0) {
42             printf("Case %d is a tree.\n", ++ cur);
43             continue;
44         } else {
45             flag = 1;
46             memset(vis, 0, sizeof(vis));
47             memset(eage, 0, sizeof(eage));
48             for (int i = 0; i < maxn; ++ i) {
49                 father[i] = i;
50             }
51             vis[x] = vis[y] = 1;
52             Union(x, y);
53             eage[y] ++;
54             while (cin >> x >> y) {
55                 if (x + y == 0) break;
56                 vis[x] = vis[y] = 1;
57                 Union(x, y);
58                 eage[y] ++;
59             }
60             sort(eage, eage + maxn, greater<int>());
61             int xx = 0;
62             if (eage[0] > 1) flag = 0;
63             for (int i = 1; i < maxn; ++ i) {
64                 if (vis[i] && father[i] == i) {
65                     xx ++;
66                     if (xx > 1) {flag = 0; break;}
67                 }
68             }
69             /*for (int i = 1 ; i < maxn; ++ i) {
70                 cout << vis[i] <<  " " ;
71             }*/
72
73             if (flag) printf("Case %d is a tree.\n", ++ cur);
74             else printf("Case %d is not a tree.\n", ++ cur);
75         }
76     }
77     return 0;
78 }

【HDU1325】Is It A Tree?(并查集基础题),布布扣,bubuko.com

时间: 2024-10-12 02:09:39

【HDU1325】Is It A Tree?(并查集基础题)的相关文章

HDU1325 Is It A Tree? 并查集

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1325 这题与HDU1272 小希的迷宫 (并查集) 非常像,不过细细看,还是有一点区别的.就是这题的路径是单向的,每次只能由起点指向终点,在连接之前终点必须是根节点. 注意的问题: 1.不能成环,即每次输入的两个数的根节点不能相同: 2.最终根节点数目为一 3.注意当只输入"0 0" 时要输出"Case %d is a tree." 4.路径是单向的,即每次只能由起点指

【HDU1232】畅通工程(并查集基础题)

裸敲并查集,很水一次AC 1 #include <iostream> 2 #include <cstring> 3 #include <cstdlib> 4 #include <cstdio> 5 #include <cctype> 6 #include <cmath> 7 #include <algorithm> 8 #include <numeric> 9 #include <string> 1

【HDU1856】More is better(并查集基础题)

裸并查集,但有二坑: 1.需要路径压缩,不写的话会TLE 2.根据题目大意,如果0组男孩合作的话,应该最大的子集元素数目为1.所以res初始化为1即可. 1 #include <iostream> 2 #include <cstring> 3 #include <cstdio> 4 #include <cstdlib> 5 #include <algorithm> 6 #include <numeric> 7 #include <

【HDU2120】Ice_cream&#39;s world I(并查集基础题)

查环操作,裸题.一次AC. 1 #include <iostream> 2 #include <cstring> 3 #include <cstdlib> 4 #include <cctype> 5 #include <cmath> 6 #include <string> 7 #include <cstdio> 8 #include <algorithm> 9 #include <numeric>

【HDU1231】How Many Tables(并查集基础题)

什么也不用说,并查集裸题,直接盲敲即可. 1 #include <iostream> 2 #include <cstring> 3 #include <cstdlib> 4 #include <cstdio> 5 #include <cctype> 6 #include <cmath> 7 #include <algorithm> 8 #include <numeric> 9 using namespace s

HDU 1325 Is It A Tree? 并查集

判断是否为树 森林不是树 空树也是树 成环不是树 数据: 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 1 0 0 1 2 2 3 4 5 0 0 2 5 0 0 ans: no no yes #include <stdio.h> #include <string.h> #include <stdlib.h> #include <limits.h> #include <malloc.h> #include <ctype

G - Brain Network (easy)(并查集水题)

G - Brain Network (easy) Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u CodeForces 690C1 Description One particularly well-known fact about zombies is that they move and think terribly slowly. While we still don't know

poj 1182 食物链 并查集好题

挑战程序设计上有解答的并查集好题.把事件作为元素进行合并,举例:若输入1 2 3,意思就是把2,3归为同一类,至于归于哪一类并不需要去讨论,则把2属于A,3属于A这两件事件归为一类;2属于B,3属于B这两件事归为一类;2属于C,3属于C这两件事归为一类:若输入 2 2 3,由于A吃B,B吃C,C吃A,就把2属于A,3属于B这两件事情归为一类:以此类推.当检测到当前情况与之前正确的情况不符合,则错误的情况数加1. #include <iostream> #include <cstdio&g

Codeforces Round #254 (Div. 2) DZY Loves Chemistry【并查集基础】

一开始不知道题意是啥意思,迟放进去反应和后放进去反应有什么区别 对于第三组数据不是很懂,为啥312,132的组合是不行的 后来发现这是一道考察并查集的题目 QAQ 怒贴代码: 1 #include <stdio.h> 2 #include <string.h> 3 #include <stdlib.h> 4 #include <math.h> 5 #include <iostream> 6 #include <algorithm> 7