zoukankan      html  css  js  c++  java
  • 1131 Subway Map PAT 甲级真题

    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.

    -------------------------------------------

    题意:求出两站点之间的最短车程。

    思路:要车程最短,需要中途停站最少,停站最少的情况下,还要考虑换乘最少。

    注意,没有站点都由四位整数表示,不足四位的情况也要考虑,添加前导零,即在输出时采用%04d的方式,格式化输出。

    储存两个站点之间线路的方式:使用map离散化存储,line[station1*10000+station]=线路。

    dfs回溯搜索所有线路。

    #include<iostream>
    #include<unordered_map>
    #include<vector>
    using namespace std;
    int n;
    int start, end1;
    int Mincnt, Mintra;
    vector<vector<int>>v(10000);
    unordered_map<int, int>line;
    int vis[10000];
    vector<int>ans, path;
    int MinTra(vector<int> v) {
        int cnt = 0;
        int preline = 0;
        for (int i = 1; i < v.size(); i++) {
            if (line[v[i - 1] * 10000 + v[i]] != preline) {
                cnt++;
            }
            preline = line[v[i - 1] * 10000 + v[i]];
        }
        return cnt;
    }
    void dfs(int u, int cnt) {
        if (end1 == u && (cnt < Mincnt || (cnt == Mincnt && MinTra(ans) < Mintra))) {
            Mintra = MinTra(ans);
            Mincnt = cnt;
            path = ans;
            return;
        }
        for (int i = 0; i < v[u].size(); i++) {
            if (vis[v[u][i]] == 0) {
                vis[v[u][i]] = 1; ans.push_back(v[u][i]);
                dfs(v[u][i],cnt+1);
                vis[v[u][i]] = 0;
                ans.pop_back();
            }
        }
    }
    int main()
    {
        cin >> n;
        for (int i = 0; i < n; i++) {
            int t, tmp;
            cin >> t >> tmp;
            for (int j = 1; j < t; j++) {
                int to; cin >> to;
                v[tmp].push_back(to);
                v[to].push_back(tmp);
                line[tmp*10000+to] = line[to*10000+tmp] = i + 1;
                tmp = to;
            }
        }
        int k;
        cin >> k;
        for (int i = 0; i < k; i++) {
            cin >> start >> end1;
            vis[start] = 1;
            //ans.clear();
            Mincnt = 99999, Mintra = 99999;
            ans.push_back(start);
            dfs(start, 0);
            vis[start] = 0;
            ans.pop_back();
            printf("%d
    ", Mincnt);
            int preline = 0;
            int last = path[0];
            for (int j = 1; j < path.size(); j++) {
                if (line[path[j - 1] * 10000 + path[j]] != preline) {
                    if(0!=preline)printf("Take Line#%d from %04d to %04d.
    ",preline,last,path[j-1]);
                    preline = line[path[j - 1] * 10000 + path[j]];
                    last = path[j - 1];
                }
            }
            printf("Take Line#%d from %04d to %04d.
    ", preline, last, end1);
        }
        getchar();
        getchar();
        return 0;
    }
  • 相关阅读:
    Elementui el-input 实现自定义 v-model
    巧用Ajax的beforeSend 提高用户体验
    医生不会告诉你,它是天然“安眠药”,一周吃2次,一觉自然醒!
    CentOS下搭建SVN服务器
    linux下 mysql数据库的备份和还原
    最新sublime text 3 注册码license分享(亲测有效)
    Centos 安装 Nginx 详细过程
    centos如何安装Python3
    python安装提示No module named setuptools,wget提示ERROR 403: SSL is required
    bash: pip: command not found... 解决方法
  • 原文地址:https://www.cnblogs.com/zxzmnh/p/11703050.html
Copyright © 2011-2022 走看看