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

1131 Subway Map (30 分)

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 (i=1,⋯,M) 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] (i=1,⋯,M−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:


Sample Output:

Take Line# from  to .

Take Line# from  to .
Take Line# from to .
Take Line# from to . Take Line# from to .
Take Line# from to .
Take Line# from to .

题目大意:求最短路径(停靠站点次数最少的路径),停靠站点次数相同时选择转站次数最少的路径。

思路:这是一个有环无向图,需要开辟一个visit映射(或者数组)来标记已经访问过的节点,回溯的时候再更改标记。用unordered_map来存储每两个站点之间的地铁线路,用于中转站的判断(前面的节点到当前节点的线路与当前节点到后一节点的线路不同的话那么当前节点为中转站)。DFS里面设置一个临时路径tpath(存储当前的路径),搜索的过程中,每一次到达destination的时候都对临时路径进行判断,使得最终路径path始终指向当前的最短路径。。。题目虽然不难,但是相当的繁琐~~

 #include<iostream>
#include<vector>
#include<unordered_map>
using namespace std; unordered_map<int,vector<int>> G;//G存储无向图信息
unordered_map<int,int> Line;//Line存储每两个站点间的线路信息 int mintrans,minsite;//最少转站次数、最少过站次数
/*DFS传递的参数很多,但是全局变量也不是很方便*/
void DFS(unordered_map<int,bool> &visit,vector<int> &path,vector<int> &tpath,int start,int &end,int sitecnt);
int transferNum(vector<int> &tpath);//获取路径的中转站数量 int main()
{
int N,M,K;
scanf("%d",&N);
for(int i=;i<=N;i++){
int pre,cur;
scanf("%d%d",&M,&pre);
for(int j=;j<M;j++){
scanf("%d",&cur);
G[pre].push_back(cur);
G[cur].push_back(pre);
Line[pre*+cur]=Line[cur*+pre]=i;
pre=cur;
}
}
scanf("%d",&K);
for(int i=;i<K;i++){
int start,end,sitecnt=;
mintrans=,minsite=;//数据初始化
scanf("%d%d",&start,&end);
vector<int> path,tpath;//path存储最终路径,tpath存储临时路径
unordered_map<int,bool> visit;//标记访问过的节点
DFS(visit,path,tpath,start,end,sitecnt);
/*输出结果*/
int preline=Line[path[]*+path[]],presite=start,f=path.size();
printf("%d\n",f-);
for(int j=;j<f;j++){
int tmpline=Line[path[j-]*+path[j]];
if(preline!=tmpline){
printf("Take Line#%d from %04d to %04d.\n",preline,presite,path[j-]);
presite=path[j-];
preline=tmpline;
}
}
if(preline==Line[path[f-]*+path[f-]])//终点站属于中转站的时候要记得输出
printf("Take Line#%d from %04d to %04d.\n",preline,presite,end);
}
return ;
}
int transferNum(vector<int> &tpath)
{
int pre=Line[tpath[]*+tpath[]],transcnt=;
for(int i=;i<tpath.size();i++){
int tmp=Line[tpath[i-]*+tpath[i]];
if(pre!=tmp) transcnt++;
pre=tmp;
}
return transcnt;
}
void DFS(unordered_map<int,bool> &visit,vector<int> &path,vector<int> &tpath,int start,int &end,int sitecnt)
{
if(!visit[start]){
visit[start]=true;
tpath.push_back(start);
}
if(start==end){
int transcnt=transferNum(tpath);
if(minsite>sitecnt||(minsite==sitecnt&&mintrans>transcnt)){//找到比当前路径的站点数更少、转站数更少的路径则替换路径
minsite=sitecnt;
mintrans=transcnt;
path=tpath;
}
return;//到达终点则结束当前维度的搜索
}
for(int i=;i<G[start].size();i++){
if(!visit[G[start][i]]){
DFS(visit,path,tpath,G[start][i],end,sitecnt+);
visit[G[start][i]]=false;
tpath.pop_back();
}
}
}

PAT甲级——1131 Subway Map (30 分)的更多相关文章

  1. PAT甲级1131. Subway Map

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

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

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

  3. PAT 甲级 1072 Gas Station (30 分)(dijstra)

    1072 Gas Station (30 分)   A gas station has to be built at such a location that the minimum distance ...

  4. PAT 甲级 1049 Counting Ones (30 分)(找规律,较难,想到了一点但没有深入考虑嫌麻烦)***

    1049 Counting Ones (30 分)   The task is simple: given any positive integer N, you are supposed to co ...

  5. PAT 甲级 1030 Travel Plan (30 分)(dijstra,较简单,但要注意是从0到n-1)

    1030 Travel Plan (30 分)   A traveler's map gives the distances between cities along the highways, to ...

  6. PAT 甲级 1080 Graduate Admission (30 分) (简单,结构体排序模拟)

    1080 Graduate Admission (30 分)   It is said that in 2011, there are about 100 graduate schools ready ...

  7. PAT 甲级 1026 Table Tennis (30 分)(坑点很多,逻辑较复杂,做了1天)

    1026 Table Tennis (30 分)   A table tennis club has N tables available to the public. The tables are ...

  8. PAT 甲级 1022 Digital Library (30 分)(字符串读入getline,istringstream,测试点2时间坑点)

    1022 Digital Library (30 分)   A Digital Library contains millions of books, stored according to thei ...

  9. PAT甲级——A1131 Subway Map【30】

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

随机推荐

  1. ZOJ - 3932 Handshakes 【水】

    题目链接 http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3932 题意 给出 N 个人,然后 1-N 然后 从 1 - N ...

  2. ARM编译器中预定义的宏

    arm系列目前支持三大主流的工具链,realview的armcc,iar ewarm的iccarm,gnu的gcc,编译器在编译的时候会预定义一些宏,这些宏在工程中起到不可或缺的作用. 例如 /* d ...

  3. IPFS中文简介

    ipfs是什么? 它是一个协议也是一个网络,已经运行了2年半,并非虚无缥缈的空气. 它像比特币网络一样,并没有发明什么新技术,他只是将很多种技术(P2P网络技术,bt传输技术,Git版本控制,自证明文 ...

  4. x264 FFmpeg Options Guide

    https://sites.google.com/site/linuxencoding/x264-ffmpeg-mapping x264 FFmpeg Options Guide Please Not ...

  5. 树堆(Treap)

    平衡树 简介: 平衡二叉树(Balanced Binary Tree)具有以下性质:它是一 棵空树或它的左右两个子树的高度差的绝对值不超过1,并且左右两个子树都是一棵平衡二叉树.平衡二叉树的常用实现方 ...

  6. 谈谈嵌套for循环的理解

    谈谈嵌套for循环的理解     说for的嵌套,先说一下一个for循环的是怎么用的.      这次的目的是为了用for循环输出一个乘法口诀表,一下就是我的一步步理解.    一.   语法:   ...

  7. XML 解析中 SelectSingleNode 与 SelectNodes 使用通配符介绍

    俺是 XML XPath的新手,最近因为项目需要,研究了一下基本的两个函数 SelectSingleNode和SelectNodes 是如何实用通配符的,分享以下基本经验: 假设有段XML 如下所示: ...

  8. 《Objective-C高级编程》の内存管理の学习笔记

    此日志用于记录下学习过程中碰到的问题 转载请注明出处: http://www.cnblogs.com/xdxer/p/4069650.html <Objective-C高级编程> 人民邮电 ...

  9. docker容器的参数如何指定配额

    docker容器的参数如何指定配额 1. 内存 现在让我看下内存限制. 第一件事需要注意的是,默认一个容器可以使用主机上的所有内存. 如果你想为容器中的所有进程限制内存,使用docker run命令的 ...

  10. WebService完成文件上传下载

    由于开发需要使用webservice,第一个接触的工具叫axis2.项目开发相关jar下载. service端: 启动类: import java.net.InetAddress; import ja ...