日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

POJ 1308 Is It A Tree? (并查集)

發布時間:2023/12/10 编程问答 39 豆豆
生活随笔 收集整理的這篇文章主要介紹了 POJ 1308 Is It A Tree? (并查集) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Is It A Tree?

題目鏈接:

http://acm.hust.edu.cn/vjudge/contest/123393#problem/M

Description

A tree is a well-known data structure that is either empty (null, void, nothing) or is a set of one or more nodes connected by directed edges between nodes satisfying the following properties.

There is exactly one node, called the root, to which no directed edges point.
Every node except the root has exactly one edge pointing to it.
There is a unique sequence of directed edges from the root to each node.
For example, consider the illustrations below, in which nodes are represented by circles and edges are represented by lines with arrowheads. The first two of these are trees, but the last is not.

In this problem you will be given several descriptions of collections of nodes connected by directed edges. For each of these you are to determine if the collection satisfies the definition of a tree or not.

Input

The input will consist of a sequence of descriptions (test cases) followed by a pair of negative integers. Each test case will consist of a sequence of edge descriptions followed by a pair of zeroes Each edge description will consist of a pair of integers; the first integer identifies the node from which the edge begins, and the second integer identifies the node to which the edge is directed. Node numbers will always be greater than zero.

Output

For each test case display the line "Case k is a tree." or the line "Case k is not a tree.", where k corresponds to the test case number (they are sequentially numbered starting with 1).

Sample Input

6 8 5 3 5 2 6 4
5 6 0 0

8 1 7 3 6 2 8 9 7 5
7 4 7 8 7 6 0 0

3 8 6 8 6 4
5 3 5 6 5 2 0 0
-1 -1

Sample Output

Case 1 is a tree.
Case 2 is a tree.
Case 3 is not a tree.


題意:


判斷給出的圖是否是一棵樹.


題解:


這題跟HDU1272判斷聯通無環圖一模一樣,圖的有向無向并不造成影響.
(http://www.cnblogs.com/Sunshine-tcf/p/5709544.html).


代碼:

#include <iostream> #include <cstdio> #include <cstring> #include <cmath> #include <algorithm> #include <queue> #include <map> #include <set> #include <vector> #define LL long long #define eps 1e-8 #define maxn 101000 #define mod 100000007 #define inf 0x3f3f3f3f #define IN freopen("in.txt","r",stdin); using namespace std;int fa[maxn]; int _rank[maxn]; bool vis[maxn];void init_set() {for(int i=0; i<maxn; i++) {fa[i] = i;_rank[i] = 0;} }int find_set(int x) {return fa[x] = (x==fa[x]? x:find_set(fa[x])); }void unit_set(int x, int y) {vis[x] = vis[y] = 1;x = find_set(x);y = find_set(y);if(_rank[x] < _rank[y]) swap(x, y);fa[y] = x;if(_rank[x] == _rank[y]) _rank[x]++; }int main(int argc, char const *argv[]) {//IN;int x, y, ans = 1; int ca = 1;init_set();memset(vis, 0, sizeof(vis));while(scanf("%d %d", &x, &y) != EOF && (x!=-1||y!=-1)){if(!x && !y) {int last = -1;for(int i=0; i<maxn; i++) {if(!vis[i]) continue;if(last == -1) last = find_set(i);if(last != find_set(i)) {ans = 0; break;}}if(ans) printf("Case %d is a tree.\n", ca++);else printf("Case %d is not a tree.\n", ca++);ans = 1;init_set();memset(vis, 0, sizeof(vis));continue;}if(find_set(x) == find_set(y)) ans = 0;else unit_set(x, y);}return 0; }

轉載于:https://www.cnblogs.com/Sunshine-tcf/p/5709548.html

總結

以上是生活随笔為你收集整理的POJ 1308 Is It A Tree? (并查集)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。