ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

Network Delay Time

2020-09-10 14:02:00  阅读:154  来源: 互联网

标签:node dist Network int signal times Delay vector Time


here 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

class Solution {
public:
    int networkDelayTime(vector<vector<int>>& times, int N, int K) {
        const int INF = 0x3f3f3f3f;
        vector<vector<int>> g(N+1,vector<int>(N+1,INF));
        for(auto&v: times){
            g[v[0]][v[1]] = v[2];
        }
        vector<int> dist(N+1,INF);//距离起始点的最短距离
        vector<bool> st(N+1,false);//是否已经取得了最优解

        dist[K] =0;//起始点
        for(int i=0;i< N-1;i++){
            int t=-1;
            for(int j=1;j<=N;j++){//在还未确定最短路径的点中,寻找到起始点距离最小的点
            if(!st[j] && (t==-1 || dist[t] > dist[j])){//找出当前节点出发的最短路径
                t=j;
            }
            }

            st[t] = true;//t号的最短路径已经确定
            for(int j=1;j<=N;++j){//用t更新其他点的距离
               dist[j] = min(dist[j],dist[t]+g[t][j]);
            }
        }
        int ans = *max_element(dist.begin()+1,dist.end());
        return ans == INF ? -1:ans;
    }
};

注意:

朴素Dijkstra算法

标签:node,dist,Network,int,signal,times,Delay,vector,Time
来源: https://www.cnblogs.com/zmachine/p/13645253.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有