The Disjoint Set ADT
Problem
Introduction
We have a network of computers and a list of bi-directional connections. Each of these connections allows a file transfer from one computer to another. Is it possible to send a file from any computer on the network to any other?
Input Specification
Each input file contains one test case. For each test case, the first line contains N (2≤N≤\(10^4\)), the total number of computers in a network. Each computer in the network is then represented by a positive integer between 1 and N. Then in the following lines, the input is given in the format:
1 | I c1 c2 |
where I
stands for inputting a connection between c1
and c2
; or
1 | S |
where S
stands for stopping this case.
Output Specification
For each C
case, print in one line the word "yes" or "no" if it is possible or impossible to transfer files between c1
and c2
, respectively. At the end of each case, print in one line "The network is connected." if there is a path between any pair of computers; or "There are k
components." where k
is the number of connected components in this network.
Sample Input 1:
1 | 5 |
Sample Output 1:
1 | no |
Sample Input 2:
1 | 5 |
Sample Output 2:
1 | no |
Solution
这道题就是最基本的Disjoint Set ADT,对于I
便使用union,对于C
便对两个节点分别使用Find
,然后比较两个节点是不是有同一个root。
对于检查有几个Group,只需要在S
之后检查所有点下的-1数量。只有一个root说明全连接,有几个root便是说明有多少个components。
AD Code
1 |
|