PAT甲级——A1131 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.

subwaymap.jpg

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.

samplemap.jpg

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和最后⼀个站之间的路即使
最后⼀个站并不是换乘站~
喵呜~
 1 #include <iostream>
 2 #include <vector>
 3 #include <unordered_map>
 4 using namespace std;
 5 vector<int> route[10005];
 6 int visit[10005], minCnt, minTra, n, m, k, start, end1;
 7 unordered_map<int, int>line;
 8 vector<int>path, tempPath;
 9 int transferCnt(vector<int>a)
10 {
11     int cnt = -1, preLine = 0;
12     for (int i = 1; i < a.size(); ++i)
13     {
14         if (line[a[i - 1] * 10000 + a[i]] != preLine)
15         {
16             cnt++;//换乘了
17             preLine = line[a[i - 1] * 10000 + a[i]];
18         }
19     }
20     return cnt;
21 }
22 void DFS(int node, int cnt)
23 {
24     if (node == end1 && (cnt < minCnt || (cnt == minCnt && transferCnt(tempPath) < minTra)))
25     {
26         minCnt = cnt;
27         minTra = transferCnt(tempPath);
28         path = tempPath;
29     }
30     if (node == end1)return;
31     for (int i = 0; i < route[node].size(); ++i)
32     {
33         if (visit[route[node][i]] == 0)//未遍历过
34         {
35             visit[route[node][i]] = 1;
36             tempPath.push_back(route[node][i]);//保存可行路径
37             DFS(route[node][i], cnt + 1);//经过一站
38             visit[route[node][i]] = 0;
39             tempPath.pop_back();//使用回溯法                
40         }
41     }
42 }
43 int main()
44 {
45     cin >> n;
46     for (int i = 1; i <= n; ++i)
47     {
48         cin >> m >> start;
49         for (int j = 1; j < m; ++j)
50         {
51             cin >> end1;
52             route[start].push_back(end1);
53             route[end1].push_back(start);
54             line[start * 10000 + end1] = line[end1 * 10000 + start] = i;//用pot1*10000+pot来表示这两个站是可行的
55             start = end1;
56         }
57     }
58     cin >> k;
59     while (k--)
60     {
61         cin >> start >> end1;
62         minCnt = minTra = INT32_MAX-1;
63         tempPath.clear();
64         tempPath.push_back(start);
65         visit[start] = 1;
66         DFS(start, 0);
67         visit[start] = 0;
68         cout << minCnt << endl;
69         int preLine = 0, preTra = start;
70         for (int i = 1; i < path.size(); ++i)
71         {
72             if (line[path[i - 1] * 10000 + path[i]] != preLine)//换乘了
73             {
74                 if (preLine != 0)
75                     printf("Take Line#%d from %04d to %04d.\n", preLine, preTra, path[i - 1]);
76                 preLine = line[path[i - 1] * 10000 + path[i]];
77                 preTra = path[i - 1];
78             }
79         }
80         printf("Take Line#%d from %04d to %04d.\n", preLine, preTra, end1);
81     }
82     return 0;
83 }

猜你喜欢

转载自www.cnblogs.com/zzw1024/p/11483985.html