[LeetCode]743. Network Delay Time

栏目: 编程工具 · 发布时间: 6年前

内容简介:There areGivenNow, we send a signal from a certain node

原题

There are N network nodes, labelled  1 to  N .

Given times , a list of travel times as  directed edges  times[i] = (u, v, w) , where  u is the source node,  v is the target node, and  w is the time it takes for a signal to travel from source to target.

Now, we send a signal from a certain node K . How long will it take for all nodes to receive the signal? If it is impossible, return  -1 .

Note:

  1. N  will be in the range  [1, 100] .
  2. K  will be in the range  [1, N] .
  3. The length of  times  will be in the range  [1, 6000] .
  4. All edges  times[i] = (u, v, w)  will have  1 <= u, v <= N  and  1 <= w <= 100 .

题解

Dijskra

本题是典型的求解最短路径的问题,我们可以用Dijsktra方法进行求解。

Dijskra原理见: https://www.youtube.com/watch?v=NLp9C7AvJhk&t=524s

维基百科: https://zh.wikipedia.org/zh/%E6%88%B4%E5%85%8B%E6%96%AF%E7%89%B9%E6%8B%89%E7%AE%97%E6%B3%95

代码

typedef pair<int, int> pii;

class Solution {
public:
    int networkDelayTime(vector<vector<int>>& times, int N, int K) {
        vector<vector<pii>> nodes(N + 1, vector<pii>{});
        for (auto time : times) {
            nodes[time[0]].push_back(make_pair(time[1], time[2]));
        }
        // declare vars
        priority_queue<pii, vector<pii>, greater<pii> > pq; // pii 0 for city index, 1 for cost time
        pq.push(make_pair(K, 0));
        vector<int> time(N + 1, INT_MAX);
        time[K] = 0;
        while (!pq.empty()) {
            pii node = pq.top();
            pq.pop();
            // update the time for the sub-nodes
            for (auto snode : nodes[node.first]) {
                if (time[snode.first] > time[node.first] + snode.second) {
                    time[snode.first] = time[node.first] + snode.second;
                    // add the valid sub-node to priority_queue
                    pq.push(make_pair(snode.first, time[snode.first]));
                }
            }
        }
        int a = -1;
        for (int i = 1; i < time.size(); ++i) {
            if (a < time[i]) a = time[i];
        }
        return a == INT_MAX ? -1 : a;
    }
};

复杂度分析

E代表times的长度

时间复杂度:O(ElogE)

空间复杂度:O(E + N)

原题: https://leetcode.com/problems/network-delay-time/

文章来源:胡小旭=>  [LeetCode]743. Network Delay Time

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

微信营销与运营一册通

微信营销与运营一册通

何秀芳、葛存山 / 人民邮电出版社 / 2014-10

《微信营销与运营一册通》深入介绍了当今最为火热的话题——微信营销,内容全面、系统和深入。它基于微信的最新版本,从策略、技巧与案例等多角度详细解析了微信的营销与运营,所有内容都是行业经验的结晶,旨在为企业或个人运用微信提供有价值的参考。《微信营销与运营一册通》主要内容如下。 * 5大微信营销利器:书中介绍了5大微信营销利器,包括漂流瓶、二维码、LBS功能、朋友圈和公众平台等。 * 6大微......一起来看看 《微信营销与运营一册通》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具