PAT甲级1131

来源:互联网 发布:京东与淘宝的区别 编辑:程序博客网 时间:2024/06/07 18:54

1131. Subway Map (30)

时间限制
400 ms
内存限制
65536 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue

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 (i = 1, ..., N) 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:
47 1001 3212 1003 1204 1005 1306 77979 9988 2333 1204 2006 2005 2004 2003 2302 200113 3011 3812 3013 3001 1306 3003 2333 3066 3212 3008 2302 3010 30114 6666 8432 4011 130633011 30136666 20012004 3001
Sample Output:
2Take Line#3 from 3011 to 3013.10Take Line#4 from 6666 to 1306.Take Line#3 from 1306 to 2302.Take Line#2 from 2302 to 2001.6Take Line#2 from 2004 to 1204.Take Line#1 from 1204 to 1306.Take Line#3 from 1306 to 3001.
#include<cstdio>#include<algorithm>#include<map>#include<vector>#include<set>#include<queue>using namespace std;int N, M,K,X;const int maxn = 10000+10;const int INF = 1 << 31 - 1;int isTransfer[maxn] = { 0 };vector<int> G[maxn];vector<int> v,pre[maxn];int d[maxn];bool visited[maxn] = { false };int line[maxn][maxn] = { 0 };//保存相邻站之间的线路所在的地铁线set<int> si;vector<int> p,x;struct Node{int v, dis;}node;struct compare{bool operator()(Node n1, Node n2){return n1.dis > n2.dis;}};void Dijkstra(int s){fill(d, d + maxn, INF);fill(visited, visited + maxn, false);priority_queue<Node, vector<Node>, compare> Q;//必须堆优化,否则超时d[s] = 0;node.dis = 0; node.v = s; Q.push(node); int u;for (set<int>::iterator it = si.begin(); it != si.end(); it++){if (!Q.empty()){u = Q.top().v;visited[u] = true;Q.pop();}for (int i = 0; i < G[u].size(); i++){int v = G[u][i];if (!visited[v]){if (d[u] + 1 < d[v]){d[v] = d[u] + 1;pre[v].clear();pre[v].push_back(u);node.v = v; node.dis = d[v];Q.push(node);}else if (d[u] + 1 == d[v]){pre[v].push_back(u);}}}}}// 获取换乘的次数int getTransf(vector<int> a) {int cnt = 0, preLine = 0;for (int i = 1; i < a.size(); i++) {int tempLine = line[a[i - 1]][a[i]];if (preLine != tempLine) {cnt++;preLine = tempLine;}}return cnt;}//其实就是不断比较当前边与上一个边所在线路是不是一致的,不是就说明要换线了vector<int> path, OptPath;int minT = INF, T=0;void DFS(int s,int e){if (s == e){path.push_back(s); T = getTransf(path);if (T < minT){minT = T;OptPath = path;}path.pop_back();return;}path.push_back(e);for (int i = 0; i < pre[e].size(); i++){DFS(s, pre[e][i]);}path.pop_back();}int main(){scanf("%d", &N);for (int i = 0; i < N; i++){scanf("%d", &M);v.clear();for (int j = 0; j < M; j++){scanf("%d", &X);v.push_back(X);si.insert(X);}for (int j = 0; j < v.size() - 1; j++){G[v[j]].push_back(v[j+1]);G[v[j+1]].push_back(v[j]);line[v[j + 1]][v[j]] = i + 1;line[v[j]][v[j+1]] = i + 1;}}scanf("%d", &K);int s, e; pair<int, int> pii;for (int i = 0; i < K; i++){scanf("%d%d", &s, &e);path.clear();OptPath.clear();minT = INF;//记得同时更新T = 0;//p.clear();x.clear();Dijkstra(s);DFS(s, e);printf("%d\n", OptPath.size()-1);reverse(OptPath.begin(), OptPath.end());int sourceIndex = 0, preLine = line[OptPath[0]][OptPath[1]];for (int i = 1; i < OptPath.size(); i++) {int tempLine = line[OptPath[i - 1]][OptPath[i]];if (tempLine != preLine) {printf("Take Line#%d from %04d to %04d.\n", preLine, OptPath[sourceIndex], OptPath[i - 1]);sourceIndex = i - 1;preLine = tempLine;}//要换线时,更新要输出的下一个起点与下一个待比较的线路}printf("Take Line#%d from %04d to %04d.\n", preLine, OptPath[sourceIndex], OptPath[OptPath.size() - 1]);//注意输出最后一个换乘站与终点的线路}return 0;}

0 0
原创粉丝点击