【PAT甲级】1131 Subway Map

简介: 【PAT甲级】1131 Subway Map

1131 Subway Map


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.




0e67b18124f84b4e9ed9470edf027329.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 (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.


d2a9c31dba814262a1b81908d8a51b1f.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.

题意


请你帮助编写一个程序,给定用户的起始位置,找到到达其目的地的最快方法。


第一行包含一个正整数 N NN ,表示地铁线路的数量。


接下来 N NN 行,第 i 行以下列格式描述第 i 条线路(地铁线路都是双向的):

M S[1] S[2] ... S[M]


其中 M MM 是站点数量,S[i] 是沿线站点的编号(站点编号是从 0000 到 9999 的 4 位数字)。


确保这些站点是照地铁行进顺序给出的,即地铁会从 S[i] 直接开到 S[i+1] 。


注意,可能会存在回路,但不存在自环(即地铁从 S 出发,直接开向 S ,中途不经过任何站点)。


每个车站间隔都只属于一条唯一线路。


一些线路可能会在某些站点(中转站)彼此交叉,但是不能有任何站点作为中转站时,有超过 5 条线路在该站点交汇。


描述完地铁线路信息后,包含一行整数 K KK ,表示询问次数。


接下来 K KK 行,每行描述一个询问,包含两个站点编号分别表示始发站和目的地。


对于每个询问,首先输出最少需要停靠的站点数量,然后以如下格式输出最佳线路:

Take Line#X1 from S1 to S2.
Take Line#X2 from S2 to S3.
......


其中 Xi 是线路编号,Si 是站点编号,除始发站和终点站外,只输出中转站。

如果最快线路不唯一,则输出换乘次数最少的线路,保证唯一。


思路

这道题我们不能用常规的迪杰斯特拉算法来做,这样会超时,并且在存储图的设计上我们需要进行改动,由于给的图是分成了很多的线路,直接用原来的方法去存储不太好存。所以这里我们将每条线路上的每个点都连起来,这样线路上的每个点直接距离多少就可以直接知道,如下图所示:


4312269f709740a684605c0af4caffc4.png


另外,还需要注意的是如果线路出现回路需要额外进行判断,因为每个点都可以往左和往右走,需要判断是往左走到目的站点近还是往右走到目的站点近。


当存储完图之后,就要开始计算给定两点之间的最短路线,这里我们用到了堆优化版的迪杰斯特拉算法,在原有算法模板的基础上,对需要的答案进行更新操作。需要注意的是,如果出现路径相同的路线,则选取换乘次数最少的那条路线。还有就是站点编号必须是 4 位数字,在将数字转换成字符串的时候,要对于不满 4 位的数字前面进行补 0 操作。


最后从终点往前将路径输入容器中,再将容器从后往前输出即可得到最终答案。

代码

#include<bits/stdc++.h>
using namespace std;
typedef pair<int, int> PII;
const int N = 10010, M = 1000010;
int n;
int h[N], ne[M], line[M], e[M], w[M], idx;
int dist[N], cnt[N], pre[N];
string info[N];
bool st[N];
int stops[N];
//链式前向星存储邻接表
void add(int a, int b, int c, int t)
{
    e[idx] = b, w[idx] = c, line[idx] = t, ne[idx] = h[a], h[a] = idx++;
}
//将站点编号转化为4位的字符串
string get_number(int x)
{
    char buf[5];
    sprintf(buf, "%04d", x);  //不足4位的用0填充
    return buf;
}
//堆优化版迪杰斯特拉算法
void dijkstra(int start, int end)
{
    //初始化
    memset(dist, 0x3f, sizeof dist);
    memset(cnt, 0x3f, sizeof cnt);
    memset(st, false, sizeof st);
    priority_queue<PII, vector<PII>, greater<PII>> heap;
    heap.push({ 0,start });
    dist[start] = cnt[start] = 0;
    //开始寻找最近的点进行更新
    while (heap.size())
    {
        auto t = heap.top();
        heap.pop();
        int ver = t.second;
        if (ver == end)    break;  //如果已经到终点则直接退出
        if (st[ver]) continue;   //如果已经遍历过则直接跳过
        st[ver] = true;
        //遍历与该点相连的所有边
        for (int i = h[ver]; ~i; i = ne[i])
        {
            int j = e[i];
            if (dist[j] > dist[ver] + w[i])
            {
                //路径可以更新的情况
                dist[j] = dist[ver] + w[i];
                cnt[j] = cnt[ver] + 1;
                pre[j] = ver;
                info[j] = "Take Line#" + to_string(line[i]) + " from " +
                    get_number(ver) + " to " + get_number(j) + ".";
                heap.push({ dist[j],j });
            }
            else if (dist[j] == dist[ver] + w[i])
            {
                //路径长度相等需要根据换乘次数判断的情况
                if (cnt[j] > cnt[ver] + 1)
                {
                    cnt[j] = cnt[ver] + 1;
                    pre[j] = ver;
                    info[j] = "Take Line#" + to_string(line[i]) + " from " +
                        get_number(ver) + " to " + get_number(j) + ".";
                }
            }
        }
    }
    //输出答案
    cout << dist[end] << endl;
    vector<string> path;
    for (int i = end; i != start; i = pre[i])
        path.push_back(info[i]);
    for (int i = path.size() - 1; i >= 0; i--)
        cout << path[i] << endl;
}
int main()
{
    cin >> n;
    memset(h, -1, sizeof h);
    for (int i = 1; i <= n; i++)
    {
        int m;
        cin >> m;
        for (int j = 0; j < m; j++)    cin >> stops[j];
        //给每个点之间都连一条边
        for (int j = 0; j < m; j++)
            for (int k = 0; k < j; k++)
            {
                //如果线路是闭环,需要找到最短的那条边
                int len;
                if (stops[0] != stops[m - 1]) len = j - k;
                else    len = min(j - k, m - 1 - j + k);
                add(stops[j], stops[k], len, i);
                add(stops[k], stops[j], len, i);
            }
    }
    int k;
    cin >> k;
    while (k--)
    {
        int start, end;
        cin >> start >> end;
        dijkstra(start, end);
    }
    return 0;
}


目录
相关文章
|
存储 机器学习/深度学习 算法
【PAT甲级】1111 Online Map
【PAT甲级】1111 Online Map
61 0
|
4月前
|
Dart
Dart之集合详解(List、Set、Map)
Dart之集合详解(List、Set、Map)
|
4月前
|
存储 JavaScript 前端开发
JavaScript进阶-Map与Set集合
【6月更文挑战第20天】JavaScript的ES6引入了`Map`和`Set`,它们是高效处理集合数据的工具。`Map`允许任何类型的键,提供唯一键值对;`Set`存储唯一值。使用`Map`时,注意键可以非字符串,用`has`检查键存在。`Set`常用于数组去重,如`[...new Set(array)]`。了解它们的高级应用,如结构转换和高效查询,能提升代码质量。别忘了`WeakMap`用于弱引用键,防止内存泄漏。实践使用以加深理解。
65 3
|
7天前
|
Go 定位技术 索引
Go 语言Map(集合) | 19
Go 语言Map(集合) | 19
|
6天前
|
存储 前端开发 API
ES6的Set和Map你都知道吗?一文了解集合和字典在前端中的应用
该文章详细介绍了ES6中Set和Map数据结构的特性和使用方法,并探讨了它们在前端开发中的具体应用,包括如何利用这些数据结构来解决常见的编程问题。
ES6的Set和Map你都知道吗?一文了解集合和字典在前端中的应用
|
2月前
|
存储 安全 Java
java集合框架复习----(4)Map、List、set
这篇文章是Java集合框架的复习总结,重点介绍了Map集合的特点和HashMap的使用,以及Collections工具类的使用示例,同时回顾了List、Set和Map集合的概念和特点,以及Collection工具类的作用。
java集合框架复习----(4)Map、List、set
|
2月前
|
Java
【Java集合类面试二十二】、Map和Set有什么区别?
该CSDN博客文章讨论了Map和Set的区别,但提供的内容摘要并未直接解释这两种集合类型的差异。通常,Map是一种键值对集合,提供通过键快速检索值的能力,而Set是一个不允许重复元素的集合。
|
2月前
|
算法 Java 索引
【Java集合类面试四】、 描述一下Map put的过程
这篇文章详细描述了HashMap中put操作的过程,包括首次扩容、计算索引、插入数据以及链表转红黑树和可能的再次扩容。
【Java集合类面试四】、 描述一下Map put的过程
|
2月前
|
存储
|
2月前
|
安全 Java
【Java集合类面试五】、 如何得到一个线程安全的Map?
如何得到一个线程安全的Map的方法包括:使用Collections工具类将Map包装为线程安全,使用java.util.concurrent包下的ConcurrentHashMap,以及不推荐使用性能较差的Hashtable。
下一篇
无影云桌面