Problem A
Birthday Party

Consider this example: James has three friends: Lucy, Sue, and Mark. James is friends with all three of them, but unfortunately he doesn’t have Mark’s phone number so he can’t invite him directly. However, Sue has Mark’s number (and vice versa) so she can invite Mark to James’s party.
The question that you need to answer is that if anyone lost one of the phone numbers for anyone else, would it be impossible to invite everybody to the party? Continuing the above example, if Sue lost Mark’s number (the edge denoted by the red arrow above), then it would not be possible to invite everybody to the party. You should assume that if Sue loses Mark’s number, then Mark will also lose Sue’s number. Please help James figure out if he is at risk at having someone miss his party if any pair of friends loses contact with each other.
Input
The input will contain up to
The input will be terminated by a line containing
Output
For each test case, if a pair could lose each other’s numbers and make it so that not everybody can be invited to the party, print “Yes”. Otherwise, print “No”.
Sample Input 1 | Sample Output 1 |
---|---|
2 1 0 1 4 4 0 1 1 2 2 3 3 0 5 5 0 1 1 2 0 3 3 4 3 1 0 0 |
Yes No Yes |