In the big cities, the subway systems always look so complex to the visitors. To give you some sense, the following figure shows the map of Beijing subway. Now you are supposed to help people with your computer skills! Given the starting position of your user, your task is to find the quickest way to his/her destination.

Input Specification:

Each input file contains one test case. For each case, the first line contains a positive integer N (≤ 100), the number of subway lines. Then N lines follow, with the i-th (,) line describes the i-th subway line in the format:

M S[1] S[2] ... S[M]

where M (≤ 100) is the number of stops, and S[i]'s (,) are the indices of the stations (the indices are 4-digit numbers from 0000 to 9999) along the line. It is guaranteed that the stations are given in the correct order -- that is, the train travels between S[i] and S[i+1] (,) without any stop.

Note: It is possible to have loops, but not self-loop (no train starts from S and stops at S without passing through another station). Each station interval belongs to a unique subway line. Although the lines may cross each other at some stations (so called "transfer stations"), no station can be the conjunction of more than 5 lines.

After the description of the subway, another positive integer K (≤ 10) is given. Then K lines follow, each gives a query from your user: the two indices as the starting station and the destination, respectively.

The following figure shows the sample map.

Note: It is guaranteed that all the stations are reachable, and all the queries consist of legal station numbers.

Output Specification:

For each query, first print in a line the minimum number of stops. Then you are supposed to show the optimal path in a friendly format as the following:

Take Line#X1 from S1 to S2.
Take Line#X2 from S2 to S3.
......

where Xi's are the line numbers and Si's are the station indices. Note: Besides the starting and ending stations, only the transfer stations shall be printed.

If the quickest path is not unique, output the one with the minimum number of transfers, which is guaranteed to be unique.

Sample Input:

4
7 1001 3212 1003 1204 1005 1306 7797
9 9988 2333 1204 2006 2005 2004 2003 2302 2001
13 3011 3812 3013 3001 1306 3003 2333 3066 3212 3008 2302 3010 3011
4 6666 8432 4011 1306
3
3011 3013
6666 2001
2004 3001

Sample Output:

2
Take Line#3 from 3011 to 3013.
10
Take Line#4 from 6666 to 1306.
Take Line#3 from 1306 to 2302.
Take Line#2 from 2302 to 2001.
6
Take Line#2 from 2004 to 1204.
Take Line#1 from 1204 to 1306.
Take Line#3 from 1306 to 3001.
题⽬⼤意:找出⼀条路线,使得对任何给定的起点和终点,可以找出中途经停站最少的路线;如果经
停站⼀样多,则取需要换乘线路次数最少的路线~
【很简单的,别跑^_^】
分析:⼀遍DFS即可~DFS过程中要维护两个变量:minCnt-中途经停的最少的站; minTransfer-需要换乘
的最⼩次数~
0.可以这样计算出⼀条线路的换乘次数:在line[10000][10000]的数组中保存每两个相邻站中间的线路是
⼏号线~从头到尾遍历最终保存的路径,preLine为前⼀⼩段的线路编号,如果当前的结点和前⼀个结
点组成的这条路的线路编号和preLine不同,说明有⼀个换乘,就将cnt+1,最后遍历完累加的cnt即是
换乘的次数~ 
update:由于新的PAT系统中会显示原解法有⼀个测试⽤例内存超限,考虑到line[10000][10000]存储的
⽅式太暴⼒了,所以将line换成了unordered_map<int, int> line存储的⽅式,第⼀个int⽤来存储线路,
每次将前四位存储第⼀个线路,后四位存储第⼆个线路,使⽤a[i-1]*10000+a[i]的⽅式存储,第⼆个int
⽤来保存两个相邻中间的线路是⼏号线~
1.可以这样计算出⼀条线路中途停站的次数:在dfs的时候有个变量cnt,表示当前路线是所需乘的第⼏
个站,每次dfs时候将cnt+1表示向下遍历⼀层~cnt就是当前中途停站的次数~
2.可以这样输出结果:和计算线路换乘次数的思路⼀样,每当preLine和当前Line值不同的时候就输出
⼀句话~保存preTransfer表示上⼀个换乘站,最后不要忘记输出preTransfer和最后⼀个站之间的路即使
最后⼀个站并不是换乘站~
喵呜~
 #include <iostream>
#include <vector>
#include <unordered_map>
using namespace std;
vector<int> route[];
int visit[], minCnt, minTra, n, m, k, start, end1;
unordered_map<int, int>line;
vector<int>path, tempPath;
int transferCnt(vector<int>a)
{
int cnt = -, preLine = ;
for (int i = ; i < a.size(); ++i)
{
if (line[a[i - ] * + a[i]] != preLine)
{
cnt++;//换乘了
preLine = line[a[i - ] * + a[i]];
}
}
return cnt;
}
void DFS(int node, int cnt)
{
if (node == end1 && (cnt < minCnt || (cnt == minCnt && transferCnt(tempPath) < minTra)))
{
minCnt = cnt;
minTra = transferCnt(tempPath);
path = tempPath;
}
if (node == end1)return;
for (int i = ; i < route[node].size(); ++i)
{
if (visit[route[node][i]] == )//未遍历过
{
visit[route[node][i]] = ;
tempPath.push_back(route[node][i]);//保存可行路径
DFS(route[node][i], cnt + );//经过一站
visit[route[node][i]] = ;
tempPath.pop_back();//使用回溯法
}
}
}
int main()
{
cin >> n;
for (int i = ; i <= n; ++i)
{
cin >> m >> start;
for (int j = ; j < m; ++j)
{
cin >> end1;
route[start].push_back(end1);
route[end1].push_back(start);
line[start * + end1] = line[end1 * + start] = i;//用pot1*10000+pot来表示这两个站是可行的
start = end1;
}
}
cin >> k;
while (k--)
{
cin >> start >> end1;
minCnt = minTra = INT32_MAX-;
tempPath.clear();
tempPath.push_back(start);
visit[start] = ;
DFS(start, );
visit[start] = ;
cout << minCnt << endl;
int preLine = , preTra = start;
for (int i = ; i < path.size(); ++i)
{
if (line[path[i - ] * + path[i]] != preLine)//换乘了
{
if (preLine != )
printf("Take Line#%d from %04d to %04d.\n", preLine, preTra, path[i - ]);
preLine = line[path[i - ] * + path[i]];
preTra = path[i - ];
}
}
printf("Take Line#%d from %04d to %04d.\n", preLine, preTra, end1);
}
return ;
}

PAT甲级——A1131 Subway Map【30】的更多相关文章

  1. PAT甲级1131. Subway Map

    PAT甲级1131. Subway Map 题意: 在大城市,地铁系统对访客总是看起来很复杂.给你一些感觉,下图显示了北京地铁的地图.现在你应该帮助人们掌握你的电脑技能!鉴于您的用户的起始位置,您的任 ...

  2. PAT甲级——1131 Subway Map (30 分)

    可以转到我的CSDN查看同样的文章https://blog.csdn.net/weixin_44385565/article/details/89003683 1131 Subway Map (30  ...

  3. A1131. Subway Map (30)

    In the big cities, the subway systems always look so complex to the visitors. To give you some sense ...

  4. PAT甲级1131 Subway Map【dfs】【输出方案】

    题目:https://pintia.cn/problem-sets/994805342720868352/problems/994805347523346432 题意: 告诉你一个地铁线路图,站点都是 ...

  5. PAT甲级1111. Online Map

    PAT甲级1111. Online Map 题意: 输入我们当前的位置和目的地,一个在线地图可以推荐几条路径.现在你的工作是向你的用户推荐两条路径:一条是最短的,另一条是最快的.确保任何请求存在路径. ...

  6. PAT甲级——1111 Online Map (单源最短路经的Dijkstra算法、priority_queue的使用)

    本文章同步发布在CSDN:https://blog.csdn.net/weixin_44385565/article/details/90041078   1111 Online Map (30 分) ...

  7. PAT 1131. Subway Map (30)

    最短路. 记录一下到某个点,最后是哪辆车乘到的最短距离.换乘次数以及从哪个位置推过来的,可以开$map$记录一下. #include<map> #include<set> #i ...

  8. PAT甲级——A1111 Online Map【30】

    Input our current position and a destination, an online map can recommend several paths. Now your jo ...

  9. PAT A1131 Subway Map

    dfs,选择最优路径并输出~ 这道题难度非常炸裂,要求完完整整自己推一遍,DFS才算过关!思路:一遍dfs,过程中要维护两个变量,minCnt 中途停靠最少的站.minTransfer需要换成的最少次 ...

随机推荐

  1. kafka保证数据不丢失机制

    kafka如何保证数据的不丢失 1.生产者如何保证数据的不丢失:消息的确认机制,使用ack机制我们可以配置我们的消息不丢失机制为-1,保证我们的partition的leader与follower都保存 ...

  2. (转)虚拟IP原理

    转:http://blog.csdn.net/whycold/article/details/11898249 高可用性HA(High Availability)指的是通过尽量缩短因日常维护操作(计划 ...

  3. Android获取Root权限之后的静默安装实现代码示例分析

    转:http://blog.csdn.net/jiankeufo/article/details/43795015 Adroid开发中,我们有时会遇到一些特殊功能的实现,有些功能并没有太高技术难度,但 ...

  4. SPSS单一样本的T检验

    SPSS单一样本的T检验 如果已知总体均数,进行样本均数与总体均数之间的差异显著性检验属于单一样本的T检验.在SPSS中,单一样本的T检验由"One-Sample T Test"过 ...

  5. maven配置私服中可能遇到的问题

    文章目录 之前要写一个hsf的demo,maven的依赖是需要alibaba的私服的,所以出现了下面的错误. 具体参看另一篇文章:https://blog.csdn.net/dataiyangu/ar ...

  6. 去掉Word 标题编号变成黑框

    问题: 在使用Word编写文档时,提前拟好的标题编号会突然变成黑框(黑色的方框,黑色的矩形),如下图 解决方案: 1.将光标定位到标题中,紧邻黑框的右侧 2.按键盘左方向键使方框变成黑色 3.按键盘的 ...

  7. 剑指offer——04从尾到头打印链表

    题目描述 输入一个链表,按链表从尾到头的顺序返回一个ArrayList.   有多种方法. class Solution { public: vector<int> printListFr ...

  8. 安装mongo

    版权声明:本文为博主原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明. 本文链接:https://blog.csdn.net/weixin_40101530/articl ...

  9. 网页添加Live2D看板娘

    看板娘简而言之就是小店的女服务生,也有“吸引顾客,招揽生意,提高人气”等作用类似品牌形象代言人的含义. 如果想放一个呆萌的看板娘在博客上 js <script type="text/j ...

  10. 6-MySQL高级-索引

    索引 1. 思考 在图书馆中是如何找到一本书的? 一般的应用系统对比数据库的读写比例在10:1左右(即有10次查询操作时有1次写的操作), 而且插入操作和更新操作很少出现性能问题, 遇到最多.最容易出 ...