当前位置:   article > 正文

[最短路] aw920. 最优乘车(单源最短路建图+bfs最短路模型+知识理解+好题)_单源点最短路模型

单源点最短路模型

1. 题目来源

链接:920. 最优乘车

相关:[Hbfs] lc815. 公交路线(建图+多源bfs+bfs最短路+思维+好题)

关于 spfa 循环队列初始化问题:

2. 题目解析

以为和 [Hbfs] lc815. 公交路线(建图+多源bfs+bfs最短路+思维+好题) 是一样的题…

然而写完后疯狂报错:发现本题的公交线路是单向的,终点不能到起点。

而力扣是循环的,终点可以到起点。

力扣的建图方式是无向图,显然就不对了…


建图方式:

  • 一个公交线路中,前面的站台可以通达后面的所有站台。那就直接连一条边连上去,让它能够一步到达。对每个公交线路都这样做,让每个线路中的前站都能一步到达后站。
  • 就是在一个公交线路中,前站台能到达后面的所有站台,连有向边即可。
  • 故,本题是稠密图,且相当稠密。
  • 使用邻接矩阵会好很多。

则从起点 1 到终点 n,由于图中权值均为 1,那么就可以直接 bfs 即可。


其实如果不这样建图填边的话,本题图中权值只有 0、1 两种,即在同一个线路中跑,跑到别的线路中去,采用双端队列广搜也未尝不可。

可是,我还是想完成,力扣 815. 公交路线 的看环成点的写法…


使用邻接矩阵+朴素 bfs 做了,使用链式前向星+spfa 做了。虽然 spfa 已死,但是依旧很香。

值得注意的是,最短路算法本身和存图方式是无关的。spfa+邻接矩阵的操作也是完全可以的,但是我没这样写过。应该不难。


时间复杂度: O ( n 2 ) O(n^2) O(n2)

空间复杂度: O ( n 2 ) O(n^2) O(n2)


y总代码,朴素 bfs+邻接矩阵:

#include <iostream>
#include <cstring>
#include <algorithm>
#include <sstream>

using namespace std;

const int N = 505;

int m, n;
bool g[N][N];
int dist[N];
int stop[N];
bool st[N];
int q[N];

void bfs() {
    memset(dist, 0x3f, sizeof dist);
    
    int hh = 0, tt = 0;
    q[0] = 1, dist[1] = 0;
    
    while (hh <= tt) {
        int t = q[hh ++ ];
        
        for (int i = 1; i <= n; i ++ ) {
            if (g[t][i] && dist[i] > dist[t] + 1) {
                dist[i] = dist[t] + 1;
                q[ ++ tt] = i;
            }
        }
    }
}



int main() {
    scanf("%d%d", &m, &n);
    string s;
    getline(cin, s);
    while (m -- ) {
        getline(cin, s);
        stringstream scin(s);
        int cnt = 0, x;
        while (scin >> x) stop[cnt ++ ] = x;
        for (int i = 0; i < cnt; i ++ ) 
            for (int j = i + 1; j < cnt; j ++ ) 
                g[stop[i]][stop[j]] = true;
    }
    
    bfs();
    
    if (dist[n] == 0x3f3f3f3f) puts("NO");
    else printf("%d\n", dist[n] - 1);
    
    return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57

spfa+链式前向星

#include <iostream>
#include <cstring>
#include <algorithm>
#include <sstream>

using namespace std;

const int N = 505, M = 1000005;

int m, n;
int h[N], e[M], ne[M], idx;
int dist[N];
bool st[N];
int stop[N];
int q[N];

void add(int a, int b) {
    e[idx] = b, ne[idx] = h[a], h[a] = idx ++ ;
}

void spfa() {
    memset(dist, 0x3f, sizeof dist);
    int hh = 0, tt = 1;
    // 杜绝这个二逼写法,要么就 tt=0 可以
    // q[tt ++ ] = 1, dist[1] = 0, st[1] = true;	
    q[0] = 1, dist[1] = 0, st[1] = true;
    
    while (hh != tt) {
        auto t = q[hh ++ ];
        if (hh == N) hh = 0;
        
        st[t] = false;
        
        for (int i = h[t]; ~i; i = ne[i]) {
            int j = e[i];
            if (dist[j] > dist[t] + 1) {
                dist[j] = dist[t] + 1;
                if (!st[j]) {
                    st[j] = true;
                    q[tt ++ ] = j;
                }
            }
        }
    }
}

int main() {
    scanf("%d%d", &m, &n);
    string s;
    getline(cin, s);
    memset(h, -1, sizeof h);
    while (m -- ) {
        getline(cin, s);
        stringstream scin(s);
        int cnt = 0, x;
        while (scin >> x) stop[cnt ++ ] = x;
        for (int i = 0; i < cnt; i ++ ) 
            for (int j = i + 1; j < cnt; j ++ ) {
                int a = stop[i], b = stop[j];
                add(a, b);
            }
    }
    
    spfa();
    if (dist[n] == 0x3f3f3f3f) puts("NO");
    else printf("%d\n", dist[n] - 1);
    
    return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/449352?site
推荐阅读
相关标签
  

闽ICP备14008679号