博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PAT 1139 First Contact[难][模拟]
阅读量:6657 次
发布时间:2019-06-25

本文共 4662 字,大约阅读时间需要 15 分钟。

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 -20011004 1001-2004 -2001-2003 10051005 -20011001 -20031002 10011002 -2004-2004 10011003 -2002-2003 10031004 -2002-2001 -20031001 10031003 -20011002 -2001-2002 -200351001 -2001-2003 10011005 -2001-2002 -20041111 -2003

Sample Output:

41002 20041003 20021003 20031004 200242001 10022001 10032002 10032002 1004012003 20010

 题目大意:首先给出N个人之间的M个关系,表示A和B之间又关系(其中负值表示的是女生),再给出K个查询,表示A要追求B,就算有直接关系,但是也不使用,使用第三方关系。

 输入要求:如果AB是异性,那么先输出的就是和A同性的人,如果AB是同性,那么他们的朋友输出的都必须是同性。

//这里的关系也不是一一对应,好像也不能用map.这个很难去遍历啊,首先需要找到A的一个同性朋友,如果AB异性,那么再找到异性朋友,再找到和B的同性朋友。

如果AB是同性,那么就一直找同性就可以了。 

代码来自:https://www.liuchuo.net/archives/4210

#include 
#include
#include
#include
#include
#include
#include
using namespace std;unordered_map
arr;struct node { int a, b;};bool cmp(node x, node y) { return x.a != y.a ? x.a < y.a : x.b < y.b;}int main() { int n, m, k; scanf("%d%d", &n, &m); vector
v[10000]; for (int i = 0; i < m; i++) { string a, b; cin >> a >> b; if (a.length() == b.length()) { //同性之间使用邻接表来存储。 v[abs(stoi(a))].push_back(abs(stoi(b))); v[abs(stoi(b))].push_back(abs(stoi(a))); } //居然还有这种形式的邻接矩阵 //使用前4个0,表示一方,后四个0,表示另一方。不会出现重复。 arr[abs(stoi(a)) * 10000 + abs(stoi(b))] = arr[abs(stoi(b)) * 10000 + abs(stoi(a))] = true; } scanf("%d", &k); for (int i = 0; i < k; i++) { int c, d; cin >> c >> d; vector
ans; for (int j = 0; j < v[abs(c)].size(); j++) { for (int k = 0; k < v[abs(d)].size(); k++) { if (v[abs(c)][j] == abs(d) || abs(c) == v[abs(d)][k]) continue; //如果下一个正好是对方,那么就跳过。 if (arr[v[abs(c)][j] * 10000 + v[abs(d)][k]] == true) //如果在它们俩的同性之间有交集。 ans.push_back(node{v[abs(c)][j], v[abs(d)][k]}); //以这两个为参数新建一个结构体插入。 } } sort(ans.begin(), ans.end(), cmp); printf("%d\n", int(ans.size()));//需要强制转换为int并以%d输出。 for(int j = 0; j < ans.size(); j++) printf("%04d %04d\n", ans[j].a, ans[j].b); } return 0;}

 

//真是很厉害了。

1.使用unordered_map<int, bool> arr替代二维数组可避免内存超限。

2.这个arr的利用方法很特别。

3.将所有关系都存进这个arr形成一个邻接矩阵;

4.将所有同性关系存进去邻接表里

5.找到A认识的同性C,B认识的同性D,判断一下二者是否相等就可以了。

6.id会有0000和-0000,此时无法区分男女,所以需要用字符串输入。

7.使用stoi函数将字符串转化为int.

代码来自:

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;#define long long llconst int MAXN = 1e4 + 10;const int INF = 0x7fffffff;const int dx[]={ 0, 1, 0, -1};const int dy[]={ 1, 0, -1, 0};int n, m;struct NODE{ vector
same;}node[MAXN];map
>mp;//居然还可以这样来做邻接矩阵,厉害了。struct ANS{ int idx, idy;}ans[MAXN];bool cmp(ANS x, ANS y){ if(x.idx==y.idx) return x.idy
View Code

 

//这个构建邻接矩阵也十分不错,不会出现超市的 情况。厉害。

 

转载于:https://www.cnblogs.com/BlueBlueSea/p/9542837.html

你可能感兴趣的文章
Oracle 存储过程了解
查看>>
python 一致性hash
查看>>
jquery submit()不能提交表单的解决方法
查看>>
iOS:KVO/KVC 的概述与使用
查看>>
Ubuntu 12.04 LTS 下配置 apache支持SPDY, 使用wireshark 抓包分析SPDY 协议
查看>>
安卓开发_慕课网_百度地图_添加覆盖物
查看>>
RabbitMQ基本概念和使用
查看>>
JSP网站开发基础总结《十三》
查看>>
SQL Server 2005 安装图解教程(Windows)
查看>>
3.0+百度地图在地图初始化的时候就弹框展示一个信息框,而不是用户点击poi时才弹出...
查看>>
第一部分 mongodb 基础篇
查看>>
俯卧撑:男人体能健康的检测标准
查看>>
坚持的力量 第二篇
查看>>
silverlight 进行本地串口调用的一种可行的解决方法
查看>>
emacs之配置4,颜色插件
查看>>
emmet语法
查看>>
[效率提升]工作中的那些命令行
查看>>
citus 多租户应用开发(来自官方文档)
查看>>
java鼠标双击和右键事件处理
查看>>
hash算法
查看>>