[M最短路] lc743. 网络延迟时间(最短路+spfa)

Posted Ypuyu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[M最短路] lc743. 网络延迟时间(最短路+spfa)相关的知识,希望对你有一定的参考价值。

1. 题目来源

链接:743. 网络延迟时间

前置知识:[图+最短路+模板] 五大最短路常用模板

2. 题目解析

有向图单源最短路,数据范围小,啥都能做。没啥好讲的,用的 spfa


  • 时间复杂度 O ( m ) O(m) O(m)
  • 空间复杂度 O ( n ) O(n) O(n)

代码:

默写板子就行了,裸题。

const int N = 105, M = 6005;
int h[N], w[M], e[M], ne[M], idx;
int dist[N];
bool st[N];

class Solution {
public:
    void add(int a, int b, int c) {
        e[idx] = b, w[idx] = c, ne[idx] = h[a], h[a] = idx ++ ;
    }

    int spfa(int n, int k) {
        memset(dist, 0x3f, sizeof dist);
        queue<int> q;
        q.push(k), dist[k] = 0, st[k] = true;

        while (q.size()) {
            auto t = q.front(); q.pop();
            st[t] = false;

            for (int i = h[t]; ~i; i = ne[i]) {
                int j = e[i];
                if (dist[j] > dist[t] + w[i]) {
                    dist[j] = dist[t] + w[i];
                    if (!st[j]) {
                        st[j] = true;
                        q.push(j);
                    }
                }
            }
        }

        int res = -1e9;
        for (int i = 1; i <= n; i ++ ) res = max(res, dist[i]);
        if (res == 0x3f3f3f3f) res = -1;

        return res;
    }

    int networkDelayTime(vector<vector<int>>& times, int n, int k) {
        memset(h, -1, sizeof h); idx = 0;
        for (auto time : times) add(time[0], time[1], time[2]);
        return spfa(n, k);
    }
};

以上是关于[M最短路] lc743. 网络延迟时间(最短路+spfa)的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 1337. 矩阵中战斗力最弱的 K 行/215. 数组中的第K个最大元素(topk快排堆排)/743. 网络延迟时间(最短路径迪杰斯特拉,弗洛伊德)

算法复习:最短路Dijkstra - Ford - Floyd

[M最短路] lc1129. 颜色交替的最短路径(bfs最短路+拆点+拆边+好题)

[M最短路] lc787. K 站中转内最便宜的航班(Bellman-Ford算法模板+边数限制最短路+dp思想)

[M最短路] lc787. K 站中转内最便宜的航班(Bellman-Ford算法模板+边数限制最短路+dp思想)

最短路算法(网络延迟时间)