PAT-1131. Subway Map (30)

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:
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找最短路径,主要是输出形式有困难,可以考虑构建结构体,结构体中有地铁线line和站点id,使用vector记录每个站点的邻接站点以及地铁线,然后就是dfs遍历这些站点,不能有重复路径,走到终点结束;将站点结构体放入一个vector中,判断地铁线line有无变化,来找出相同距离下,换线最少的路线。

#include <bits/stdc++.h>

using namespace std;

#define MAX 10004
#define INF 0x3f3f3f3f

int N, M, K;
int S, E;

struct Stop {
    int line;
    int id;
} stops[MAX];

//int stops[MAX];
vector<Stop> stopVec[MAX];
int flag[MAX];
int cntMax = INF;
vector<Stop> stopAns, stopsVec;
int subMin = 0;

void dfs(int x, int cnt) {
    if(x == E) {
        //cout<< "c:"<< cnt<< endl;
        //cntMax = min(cntMax, cnt);
        int sub = 0;
        if(cntMax > cnt) {
            stopAns = stopsVec;
            cntMax = cnt;
            for(int i = 1; i < stopsVec.size(); i++) {
                if(stopsVec[i].line != stopsVec[i-1].line) {
                    sub++;
                }
            }
            subMin = sub;
        }
        if(cntMax == cnt) {
            for(int i = 1; i < stopsVec.size(); i++) {
                if(stopsVec[i].line != stopsVec[i-1].line) {
                    sub++;
                }
            }
            if(sub < subMin) {
                stopAns = stopsVec;
                subMin = sub;
            }
        }
        return;
    }
    for(int i = 0; i < stopVec[x].size(); i++) {
        if(flag[stopVec[x][i].id] == 0) {
            flag[stopVec[x][i].id] = 1;
            stopsVec.push_back(stopVec[x][i]);
            dfs(stopVec[x][i].id, cnt+1);
            stopsVec.pop_back();
            flag[stopVec[x][i].id] = 0;
        }
    }
}

int main()
{
    cin>>N;
    for(int i = 1; i <= N; i++) {
        scanf("%d", &M);
        for(int j = 0; j < M; j++) {
            scanf("%d", &stops[j].id);
            stops[j].line = i;
            if(j != 0) {
                stopVec[stops[j].id].push_back(stops[j-1]);
                stopVec[stops[j-1].id].push_back(stops[j]);
            }
        }
    }
    cin>>K;
    for(int i = 0; i < K; i++) {
        scanf("%d%d", &S, &E);
        /*for(int j = 0; j < MAX; j++) {
            flag[j] = 0;
        }*/
        cntMax = INF;
        dfs(S, 0);
        printf("%d
", cntMax);
        int line = stopAns[0].line;
        int id = S;
        for(int i = 0; i < stopAns.size(); i++) {
            if(line != stopAns[i].line) {
                printf("Take Line#%d from %04d to %04d.
", line, id, stopAns[i-1].id);
                line = stopAns[i].line;
                id = stopAns[i-1].id;
            }
        }
        printf("Take Line#%d from %04d to %04d.
", line, id, E);
    }
    return 0;
}

原文地址:https://www.cnblogs.com/ACMessi/p/8527561.html