PAT Grade --A1139 First Contact [30]

Unlike in nowadays, the way that boys and girls expressing their feelings of love was quite subtle in the early years. When a boy A had a crush on a girl B, he would usually not contact her directly in the first place. Instead, he might ask another boy C, one of his close friends, to ask another girl D, who was a friend of both B and C, to send a message to B -- quite a long shot, isn't it? Girls would do analogously.

Here given a network of friendship relations, you are supposed to help a boy or a girl to list all their friends who can possibly help them making the first contact.

Input Specification:

Each input file contains one test case. For each case, the first line gives two positive integers N (1 < N ≤ 300) and M, being the total number of people and the number of friendship relations, respectively. Then M lines follow, each gives a pair of friends. Here a person is represented by a 4-digit ID. To tell their genders, we use a negative sign to represent girls.

After the relations, a positive integer K (≤ 100) is given, which is the number of queries. Then K lines of queries follow, each gives a pair of lovers, separated by a space. It is assumed that the first one is having a crush on the second one.

Output Specification:

For each query, first print in a line the number of different pairs of friends they can find to help them, then in each line print the IDs of a pair of friends.

If the lovers A and B are of opposite genders, you must first print the friend of A who is of the same gender of A, then the friend of B, who is of the same gender of B. If they are of the same gender, then both friends must be in the same gender as theirs. It is guaranteed that each person has only one gender.

The friends must be printed in non-decreasing order of the first IDs, and for the same first ones, in increasing order of the seconds ones.

Sample Input:

10 18
-2001 1001
-2002 -2001
1004 1001
-2004 -2001
-2003 1005
1005 -2001
1001 -2003
1002 1001
1002 -2004
-2004 1001
1003 -2002
-2003 1003
1004 -2002
-2001 -2003
1001 1003
1003 -2001
1002 -2001
-2002 -2003
5
1001 -2001
-2003 1001
1005 -2001
-2002 -2004
1111 -2003

Sample Output:

4
1002 2004
1003 2002
1003 2003
1004 2002
4
2001 1002
2001 1003
2002 1003
2002 1004
0
1
2003 2001
0


. 1 #include <the iostream>
 2 #include <Vector>
 . 3 #include < String >
 . 4 #include <algorithm>
 . 5  the using  namespace STD;
 . 6 Vector < int > Graph [ 10005 ]; // FIG 
. 7  BOOL Boy [ 10005 ]; / / subscript ID, element indicates whether or not the ID is male 
. 8  int N, M, K, the vstart, Vend;
 . 9  int main () 
 10  {
 . 11      Scanf ( " % D% D " , & N, & M);
 12 is      for( Int I = 0 ; I <M; ++ I) 
 13 is      { // read the data side 
14          String A, B;
 15          CIN >> A >> B;
 16          int IA = ABS (Stoi (A)), ABS = IB (Stoi (B)); // the string into a positive integer 
. 17          Graph [IA] .push_back (IB); // added to the side in FIG. 
18 is          Graph [IB] .push_back (IA); // was added to the side in FIG 
. 19          Boy [IA] = (A [ 0 ] =! ' - ' ); // represents the gender of the person 
20 is          Boy [IB] = (B [ 0 ] =!' - ' ); // represents the gender of the person 
21 is      }
 22 is      Scanf ( " % D " , & K);
 23 is      the while (K-- )
 24      {
 25          Scanf ( " % D% D " , the vstart &, & Vend); / / read head and tail nodes 
26 is          Vector <pair < int , int >> Result; // store meet requirements of the subject two nodes 
27          for ( int I: Graph [ABS (the vstart)]) // traverse the head node friends 
28              IF(I! = ABS (Vend) I &&! = ABS (the vstart) && Boy [I] == Boy [ABS (the vstart)]) // find non-end-node to the first node and the same gender as the first friend node 
29                  for ( int J: Graph [i]) // traverse the first node of friends 
30                      IF !! (J = ABS (Vend) && J = ABS (the sum of vstart) && Boy [J] == Boy [ABS ( Vend)]) // find non-end-node and the tail node of the same sex friend as the second node 
31 is                          for ( int K: Graph [J]) // traverse friend of the second node 
32                              IF (K == ABS (Vend)) // End node is a friend of the second node 
33 is                                  result.push_back ({I, J}); // I, J comply with two nodes 
34 is          the printf ( " % D \ n-", result.size());
35         sort(result.begin(), result.end());//排序
36         for (auto&i : result)//输出
37             printf("%04d %04d\n", i.first, i.second);
38     }
39     return 0;
40 }

 

Guess you like

Origin www.cnblogs.com/zzw1024/p/11495091.html