1139 First Contact (30 分)

1139 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


This point drop points, is really no way out, it should be the last issue of 0000 and -0000.

1. Mark with an array arr whether two people are friends (adjacency matrix representation), the owner of the mark with v gay friend (adjacency list representation)
2. For a pair of A and B want together, they need to find someone to A's All the same-sex friend C, find all the same-sex friend D B, C and D when the two men are friends when you can output C and D
3.A when looking for gay friends, you need to find what he wanted to avoid the partner B, so when the current is the same sex friend or friend B when B is a discard the result of
4. 4-digit time to output the output mode, so to 04D%
5. the int If receive a pair of friends, -0000 to 0000, and an int 0 is said, we will not know the sex of the person, but also it will affect him find his pals that step, so consider using a string to receive, because the title has said it will sign plus four ways to the input, it is determined whether the string as long as the same size, if the size is equal to two individuals of the same sex Description
6. because the resulting array must be in ascending order according to the number of the first person (when the first number is equal to the time according to the second person from small to large Sorting), so they need to sort the array to sort and then output the results to ans



 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 unordered_map<int, bool> arr;
 4 struct node{
 5     int a, b;
 6     friend bool operator < (const node &x, const node &y) {
 7         return x.a != y.a ? x.a < y.a : x.b < y.b;
 8     }
 9 };
10 int main() {
11     int n, m, k;
12     scanf("%d%d", &n, &m);
13     vector<int> v[10000];
14     for (int i = 0; i < m; i++) {
15         string a, b;
16         cin >> a >> b;
17         if (a.length() == b.length()) {
18             v[abs(stoi(a))].push_back(abs(stoi(b)));
19             v[abs(stoi(b))].push_back(abs(stoi(a)));
20         }
21         arr[abs(stoi(a)) * 10000 + abs(stoi(b))] = arr[abs(stoi(b)) * 10000 + abs(stoi(a))] = true;
22     }
23     scanf("%d", &k);
24     for (int i = 0; i < k; i++) {
25         int c, d;
26         cin >> c >> d;
27         vector<node> ans;
28         for (int j = 0; j < v[abs(c)].size(); j++) {
29             for (int k = 0; k < v[abs(d)].size(); k++) {
30                 if (v[abs(c)][j] == abs(d) || abs(c) == v[abs(d)][k]) continue;
31                 if (arr[v[abs(c)][j] * 10000 + v[abs(d)][k]] == true)
32                     ans.push_back(node{v[abs(c)][j], v[abs(d)][k]});
33             }
34         }
35         sort(ans.begin(), ans.end());
36         printf("%d\n", int(ans.size()));
37         for(int j = 0; j < ans.size(); j++)
38             printf("%04d %04d\n", ans[j].a, ans[j].b);
39     }
40     return 0;
41 }

 





Guess you like

Origin www.cnblogs.com/zllwxm123/p/11291625.html