File Transfer

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??(), the total number of computers in a network. Each computer in the network is then represented by a positive integer between 1 and?. Then in the following lines, the input is given in the format:

where?I?stands for inputting a connection between?c1?and?c2; or

where?C?stands for checking if it is possible to transfer files between?c1?and?c2; or

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:

Sample Output 1:

Sample Input 2:

Sample Output 2:

测试代码:

测试结果:

File Transfer
File Transfer