C-Maze of XiaoxiTime
limit:1000MS
Memory Limit:32768KB
64bit IO Format:%i64d &%i64 U SubmitStatus
Description
The last time 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
Input contains multiple sets of data, each set of data is a list of integers ending in 0 0, representing the number of two rooms connected by a channel. 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
For each set of data entered, the output includes only one row. If the maze conforms to Xiaoxi's idea, then output "Yes", otherwise output "No".
Sample Input
6 8 5 3 5 2 6 45 6 0 0 8 1 7 3 6 2 8 9 7 57 4 7 8 7 6 0 0 3 8 6 8 6 45 3 5 6 5 2 0 0-1-1
Sample Output
Yesyesno
#include <iostream>#include<cstdio>#include<cstring>using namespacestd;intf[100005],vis[100005];intX,y,flag;intGetfather (intx) { if(f[x]!=x) {f[x]=Getfather (f[x]); returnF[x]; } Else returnx;}intMain () { while(SCANF ("%d%d", &x,&y), x!=-1) { for(intI=1; i<=100000; i++) f[i]=i; memset (Vis,0,sizeof(VIS)); Flag=1; while(x!=0) { intfx=getfather (x); intfy=Getfather (y); VIS[X]=1; vis[y]=1; if(fx==fy) flag=0; Elsef[fy]=FX; scanf ("%d%d",&x,&y); } intk=0; for(intI=1; i<=100000; i++) if(F[i]==i &&Vis[i]) {k++; if(k>=2) {flag=0; Break;} } if(flag) printf ("yes\n"); Elseprintf"no\n"); } return 0;}
Hdoj 1272 The maze of little Nozomi