The idea of solving a problem: After merging the points given, we can judge whether the two conditions are met at the same time.
1 form a tree
2 There's no ring on this tree.
Note that when you enter 0 0, the output is "Yes", that is, the empty tree is also a tree
For a tree that contains only one node, it is also a tree
For example input 2 2 0 0,0 0 is the termination of the input, 2 2 constitute a tree with only node 2
The maze of Xiaoxi
Time limit:2000/1000 MS (java/others) Memory limit:65536/32768 K (java/others) total submission (s): 28122 Accepted Submission (s): 8702
Problem description Last Gardon Maze Castle Little Nozomi played for a long time (see Problem B), now she also want to design a maze let Gardon to go. But she designed the maze of different ideas, first she thought all the channels should be two-way connectivity, that is, if there is a channel connected to room A and B, then can go through it from room A to room B, but also through it from Room B to room A, in order to improve the difficulty, Xiaoxi hope that any two rooms have and only one path can be connected (unless you go back). Xiao-Nozomi now gives you her design to help you determine whether her design is in line with her design ideas. For example, the first two are eligible, but the last one has two methods of reaching 8 from 5.
Input inputs contain multiple sets of data, each of which is a list of integer pairs ending in 0 0, representing the number of two rooms to which a channel is connected. The number of the room is at least 1 and no more than 100000. There is a blank line between each of the two sets of data.
The entire file ends with two-1. Output contains only one row for each set of data that is entered. If the maze conforms to Xiaoxi's idea, then output "Yes", otherwise output "No". Sample INPUT6 8 5 3 5 2 6 (6 0) 1 7 3 6 2 8 9 7 4 7 8 7 6 0 8 6 8 6 3 5 6 0-1-5 Outputyesyesno
#include <stdio.h> #include <string.h>int pre[100010],mark[100010];int find (int root) {return root = = pre[ Root]? Root:pre[root] = find (Pre[root]); }void unionroot (int root1,int root2) {int x,y;x=find (ROOT1); Y=find (ROOT2); if (x!=y) pre[x]=y;} int main () {int i,m,n,x,y,flag,sum;while (scanf ("%d%d", &m,&n)!=eof) {sum=0;if (m==-1&&n==-1) break; Enter as-1-1 to terminate the input if (m==0&&n==0)//Empty tree is also the tree {printf ("yes\n"); continue; } flag=1; for (i=0;i<100010;i++) {pre[i]=i; mark[i]=0; } unionroot (M,n); Mark[m]=mark[n]=1; Flag that the node exists in the current tree while (scanf ("%d%d", &m,&n)!=eof) {if (m==0&&n==0) break; else {x=find (M); Y=find (n); if (x==y) flag=0; The pair of points can form the ring else unionroot (x, y); Mark[m]=mark[n]=1; Mark that the node exists in the current tree} if (!flag) printf ("no\n"); Else{for (i=0;i<100010;i++) {if (mark[i]&&pre[i]==i) sum++; /Calculate the total number of trees}if (sum>1) printf ("no\n"), Else printf ("yes\n");} }}
HDU 1272 Little Nozomi's Maze "and check the set"