743. Network Delay Time

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:
N will be in the range [1, 100].
K will be in the range [1, N].
The length of times will be in the range [1, 6000].
All edges times[i] = (u, v, w) will have 1 <= u, v <= N and 1 <= w <= 100.

Solution:Djikstra 最短路徑

思路:

Time Complexity: O() Space Complexity: O()

Solution Code:

class Solution {
    public int networkDelayTime(int[][] times, int N, int K) {
        if(times == null || times.length == 0){
            return -1;
        }
        
        // graph init
        Map<Integer, Map<Integer, Integer>> graph = new HashMap<>();
        for (int[] time : times) {
            if (!graph.containsKey(time[0])) {
                graph.put(time[0], new HashMap<>());
            }
            graph.get(time[0]).put(time[1], time[2]);
            
        }

        // Djikstra init
        // for each node (bfs: queue):
        //   : calc the [shortest distance from the source node] from the neighbors, saved in distanceMap
        Queue<int[]> queue = new LinkedList<>(); // (nodeId, distance from source node)
        Map<Integer, Integer> distanceMap = new HashMap<>();
        distanceMap.put(K, 0); // source node
        int gLongest = -1;

        // // Djikstra start
        queue.offer(new int[]{K, 0});
        while (!queue.isEmpty()){
            int[] cur = queue.poll();
            int node = cur[0];
            int distance = cur[1];

            // ignore processed nodes
            if (distanceMap.containsKey(node) && distanceMap.get(node) < distance){
                continue;
            }
            
            Map<Integer, Integer> neighborsMap = graph.get(node);
            if (neighborsMap == null){
                continue;
            }

            for (int neighborId: neighborsMap.keySet()){
                int absoluteDistence = distance + neighborsMap.get(neighborId);
                if (distanceMap.containsKey(neighborId) && distanceMap.get(neighborId) <= absoluteDistence){
                    continue;
                }
                distanceMap.put(neighborId, absoluteDistence);
                queue.offer(new int[]{neighborId, absoluteDistence});
            }
        }
        // get the largest absolute distance.
        for (int val : distanceMap.values()){
            if (val > gLongest){
                gLongest = val;
            }
        }
        return distanceMap.size() == N ? gLongest : -1;
    }
}
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市菌羽,隨后出現(xiàn)的幾起案子卤恳,更是在濱河造成了極大的恐慌聊训,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,013評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件绑蔫,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機作谚,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,205評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來庵芭,“玉大人妹懒,你說我怎么就攤上這事∷海” “怎么了眨唬?”我有些...
    開封第一講書人閱讀 152,370評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長好乐。 經(jīng)常有香客問我匾竿,道長,這世上最難降的妖魔是什么曹宴? 我笑而不...
    開封第一講書人閱讀 55,168評論 1 278
  • 正文 為了忘掉前任搂橙,我火速辦了婚禮,結果婚禮上笛坦,老公的妹妹穿的比我還像新娘区转。我一直安慰自己,他們只是感情好版扩,可當我...
    茶點故事閱讀 64,153評論 5 371
  • 文/花漫 我一把揭開白布废离。 她就那樣靜靜地躺著,像睡著了一般礁芦。 火紅的嫁衣襯著肌膚如雪蜻韭。 梳的紋絲不亂的頭發(fā)上悼尾,一...
    開封第一講書人閱讀 48,954評論 1 283
  • 那天,我揣著相機與錄音肖方,去河邊找鬼闺魏。 笑死,一個胖子當著我的面吹牛俯画,可吹牛的內(nèi)容都是我干的析桥。 我是一名探鬼主播,決...
    沈念sama閱讀 38,271評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼艰垂,長吁一口氣:“原來是場噩夢啊……” “哼泡仗!你這毒婦竟也來了?” 一聲冷哼從身側響起猜憎,我...
    開封第一講書人閱讀 36,916評論 0 259
  • 序言:老撾萬榮一對情侶失蹤娩怎,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后胰柑,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體截亦,經(jīng)...
    沈念sama閱讀 43,382評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,877評論 2 323
  • 正文 我和宋清朗相戀三年旦事,在試婚紗的時候發(fā)現(xiàn)自己被綠了魁巩。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 37,989評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡姐浮,死狀恐怖谷遂,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情卖鲤,我是刑警寧澤肾扰,帶...
    沈念sama閱讀 33,624評論 4 322
  • 正文 年R本政府宣布,位于F島的核電站蛋逾,受9級特大地震影響集晚,放射性物質發(fā)生泄漏。R本人自食惡果不足惜区匣,卻給世界環(huán)境...
    茶點故事閱讀 39,209評論 3 307
  • 文/蒙蒙 一偷拔、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧亏钩,春花似錦莲绰、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,199評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至栅哀,卻和暖如春震肮,著一層夾襖步出監(jiān)牢的瞬間称龙,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,418評論 1 260
  • 我被黑心中介騙來泰國打工戳晌, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留鲫尊,地道東北人。 一個月前我還...
    沈念sama閱讀 45,401評論 2 352
  • 正文 我出身青樓躬厌,卻偏偏與公主長得像马昨,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子扛施,可洞房花燭夜當晚...
    茶點故事閱讀 42,700評論 2 345

推薦閱讀更多精彩內(nèi)容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi閱讀 7,292評論 0 10
  • 天氣陰,空氣涼屹篓,溫度低疙渣,云是灰的。人們一直以來對好天氣的定義都沒有底線堆巧,驚蟄藍天白云東風吹對比著這幾天妄荔,驚蟄就是好...
    會寫作的奶牛閱讀 253評論 0 1
  • 我似乎忘記了原來的自己是一個什么樣的人了,竟把期待放在別人身上谍肤,而那些人竟也算不上至親至愛之人啦租,是我太軟弱,想從別...
    三支魚閱讀 313評論 0 1
  • 重讀王國維《人間詞話 人間詞》為其用詞精準和獨特而嘆惋:境界荒揣,格調篷角,氣象,神理系任,眼界恳蹲,句秀,骨秀俩滥,神秀嘉蕾,曠,豪……...
    子轉閱讀 461評論 0 0