文章目录
Author: CHEN, Yue
Organization: 浙江大学
Time Limit: 300 ms
Memory Limit: 64 MB
Code Size Limit: 16 KB
A1139 First Contact (30 point(s))
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
Code
#include <bits/stdc++.h>
using namespace std;
struct PA{
int a,b;
};
unordered_map<int,bool> relation;
vector<vector<int> > txp(10000);
bool cmp(PA a,PA b){
if(a.a != b.a) return a.a<b.a;
else return a.b<b.b;
}
int main(){
int n,m,k,a,b;
cin >> n >> m;
for(int i=0;i<m;i++){
string sa,sb;
cin >> sa >> sb;
a=atoi(sa.c_str());
b=atoi(sb.c_str());
if(sa.size()==sb.size()){
txp[abs(a)].push_back(abs(b));
txp[abs(b)].push_back(abs(a));
}
relation[abs(a)*10000+abs(b)]=true;
relation[abs(b)*10000+abs(a)]=true;
}
cin >>k;
for(int i=0;i<k;i++){
cin>>a>>b;
vector<PA> resultList;
for(int j=0;j<txp[abs(a)].size();j++){
for(int u=0;u<txp[abs(b)].size();u++){
if(txp[abs(a)][j]==abs(b)||abs(a)==txp[abs(b)][u]) continue;
if(relation[txp[abs(a)][j]*10000+txp[abs(b)][u]]==true){
resultList.push_back({txp[abs(a)][j],txp[abs(b)][u]});
}
}
}
sort(resultList.begin(),resultList.end(),cmp);
printf("%d\n",resultList.size());
for(int j=0;j<resultList.size();j++){
printf("%04d %04d\n",resultList[j].a,resultList[j].b);
}
}
return 0;
}
Analysis
-男生用正数表示,女生用负数表示。一个男生想对一个女生示爱,需要靠男生的一个基友和女生的一个闺蜜才可以。
-给出K组男生女生(或者两人同性别)。求男生想对女生示爱需要经过哪两个人,如果为同性别,则分别输出两个人的基友或者闺蜜。
本文探讨了一种社交网络中寻找潜在爱情信使的算法,通过分析朋友关系,帮助用户找到可以协助传达爱意的朋友组合。算法考虑了性别差异,并确保推荐的信使与用户性别相匹配。
3099

被折叠的 条评论
为什么被折叠?



