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

可以转到我的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:

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.

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

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

 1 #include<iostream>
 2 #include<vector>
 3 #include<unordered_map>
 4 using namespace std;
 5
 6 unordered_map<int,vector<int>> G;//G存储无向图信息
 7 unordered_map<int,int> Line;//Line存储每两个站点间的线路信息
 8
 9 int mintrans,minsite;//最少转站次数、最少过站次数
10 /*DFS传递的参数很多,但是全局变量也不是很方便*/
11 void DFS(unordered_map<int,bool> &visit,vector<int> &path,vector<int> &tpath,int start,int &end,int sitecnt);
12 int transferNum(vector<int> &tpath);//获取路径的中转站数量
13
14 int main()
15 {
16     int N,M,K;
17     scanf("%d",&N);
18     for(int i=1;i<=N;i++){
19         int pre,cur;
20         scanf("%d%d",&M,&pre);
21         for(int j=1;j<M;j++){
22             scanf("%d",&cur);
23             G[pre].push_back(cur);
24             G[cur].push_back(pre);
25             Line[pre*10000+cur]=Line[cur*10000+pre]=i;
26             pre=cur;
27         }
28     }
29     scanf("%d",&K);
30     for(int i=0;i<K;i++){
31         int start,end,sitecnt=0;
32         mintrans=10000,minsite=10000;//数据初始化
33         scanf("%d%d",&start,&end);
34         vector<int> path,tpath;//path存储最终路径,tpath存储临时路径
35         unordered_map<int,bool> visit;//标记访问过的节点
36         DFS(visit,path,tpath,start,end,sitecnt);
37         /*输出结果*/
38         int preline=Line[path[0]*10000+path[1]],presite=start,f=path.size();
39         printf("%d\n",f-1);
40         for(int j=2;j<f;j++){
41             int tmpline=Line[path[j-1]*10000+path[j]];
42             if(preline!=tmpline){
43                 printf("Take Line#%d from %04d to %04d.\n",preline,presite,path[j-1]);
44                 presite=path[j-1];
45                 preline=tmpline;
46             }
47         }
48         if(preline==Line[path[f-2]*10000+path[f-1]])//终点站属于中转站的时候要记得输出
49            printf("Take Line#%d from %04d to %04d.\n",preline,presite,end);
50     }
51     return 0;
52  }
53 int transferNum(vector<int> &tpath)
54 {
55     int pre=Line[tpath[0]*10000+tpath[1]],transcnt=0;
56     for(int i=2;i<tpath.size();i++){
57         int tmp=Line[tpath[i-1]*10000+tpath[i]];
58         if(pre!=tmp) transcnt++;
59         pre=tmp;
60     }
61     return transcnt;
62 }
63 void DFS(unordered_map<int,bool> &visit,vector<int> &path,vector<int> &tpath,int start,int &end,int sitecnt)
64 {
65     if(!visit[start]){
66         visit[start]=true;
67         tpath.push_back(start);
68     }
69     if(start==end){
70         int transcnt=transferNum(tpath);
71         if(minsite>sitecnt||(minsite==sitecnt&&mintrans>transcnt)){//找到比当前路径的站点数更少、转站数更少的路径则替换路径
72             minsite=sitecnt;
73             mintrans=transcnt;
74             path=tpath;
75         }
76         return;//到达终点则结束当前维度的搜索
77     }
78     for(int i=0;i<G[start].size();i++){
79         if(!visit[G[start][i]]){
80             DFS(visit,path,tpath,G[start][i],end,sitecnt+1);
81             visit[G[start][i]]=false;
82             tpath.pop_back();
83         }
84     }
85 }

原文地址:https://www.cnblogs.com/yinhao-ing/p/10651267.html

时间: 2024-08-30 00:19:27

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

1131 Subway Map (30 分)

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 th

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

1049 Counting Ones (30 分) The task is simple: given any positive integer N, you are supposed to count the total number of 1's in the decimal form of the integers from 1 to N. For example, given N being 12, there are five 1's in 1, 10, 11, and 12. Inp

【PAT甲级】1070 Mooncake (25 分)(贪心水中水)

题意: 输入两个正整数N和M(存疑M是否为整数,N<=1000,M<=500)表示月饼的种数和市场对于月饼的最大需求,接着输入N个正整数表示某种月饼的库存,再输入N个正数表示某种月饼库存全部出手的利润.输出最大利润. trick: 测试点2可能包含M不为整数的数据.(尽管题面说明M是正整数,可是根据从前PAT甲级题目的经验,有可能不是整数.....) 代码: #define HAVE_STRUCT_TIMESPEC#include<bits/stdc++.h>using names

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

PAT 甲级 1016 Phone Bills (25 分) (结构体排序,模拟题,巧妙算时间,坑点太多,debug了好久)

1016 Phone Bills (25 分)   A long-distance telephone company charges its customers by the following rules: Making a long-distance call costs a certain amount per minute, depending on the time of day when the call is made. When a customer starts connec

PAT 甲级 1041 Be Unique (20 分)(简单,一遍过)

1041 Be Unique (20 分) Being unique is so important to people on Mars that even their lottery is designed in a unique way. The rule of winning is simple: one bets on a number chosen from [1]. The first one who bets on a unique number wins. For example

PAT甲级——A1155 HeapPaths【30】

In computer science, a heap is a specialized tree-based data structure that satisfies the heap property: if P is a parent node of C, then the key (the value) of P is either greater than or equal to (in a max heap) or less than or equal to (in a min h

【PAT甲级】1003 Emergency (25分)

1003 Emergency (25分) As an emergency rescue team leader of a city, you are given a special map of your country. The map shows several scattered cities connected by some roads. Amount of rescue teams in each city and the length of each road between an

PAT 甲级 1015 Reversible Primes (20 分) (进制转换和素数判断(错因为忘了=))

1015 Reversible Primes (20 分) A reversible prime in any number system is a prime whose "reverse" in that number system is also a prime. For example in the decimal system 73 is a reversible prime because its reverse 37 is also a prime. Now given