結果

問題 No.807 umg tours
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-19 01:53:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,257 ms / 4,000 ms
コード長 875 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 81,956 KB
実行使用メモリ 153,440 KB
最終ジャッジ日時 2024-09-21 09:49:01
合計ジャッジ時間 22,619 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
60,928 KB
testcase_01 AC 59 ms
61,312 KB
testcase_02 AC 55 ms
63,360 KB
testcase_03 AC 55 ms
62,848 KB
testcase_04 AC 49 ms
60,288 KB
testcase_05 AC 48 ms
60,544 KB
testcase_06 AC 53 ms
62,720 KB
testcase_07 AC 53 ms
62,336 KB
testcase_08 AC 42 ms
52,608 KB
testcase_09 AC 40 ms
52,992 KB
testcase_10 AC 40 ms
52,736 KB
testcase_11 AC 900 ms
112,128 KB
testcase_12 AC 1,293 ms
119,040 KB
testcase_13 AC 1,536 ms
127,104 KB
testcase_14 AC 750 ms
100,480 KB
testcase_15 AC 522 ms
94,848 KB
testcase_16 AC 1,524 ms
129,408 KB
testcase_17 AC 2,182 ms
147,712 KB
testcase_18 AC 2,019 ms
144,896 KB
testcase_19 AC 1,880 ms
139,648 KB
testcase_20 AC 987 ms
115,584 KB
testcase_21 AC 952 ms
116,608 KB
testcase_22 AC 452 ms
92,544 KB
testcase_23 AC 365 ms
88,448 KB
testcase_24 AC 1,090 ms
145,792 KB
testcase_25 AC 2,257 ms
153,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
inf = 10**18

N, M = map(int, input().split())
G = [[] for _ in range(N)]
for _ in range(M):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    G[a].append((b, c))
    G[b].append((a, c))

dist = [[inf]*2 for _ in range(N)]
dist[0][0] = 0
dist[0][1] = 0
que = []
heapq.heappush(que, (0, 0, 0))  # dist, node, used
heapq.heappush(que, (0, 0, 1))
while que:
    ds, s, used = heapq.heappop(que)
    if dist[s][used] < ds:
        continue
    for t, dt in G[s]:
        if dist[t][used] > ds + dt:
            dist[t][used] = ds + dt
            heapq.heappush(que, (ds + dt, t, used))
        if not used:
            if dist[t][used + 1] > ds:
                dist[t][used + 1] = ds
                heapq.heappush(que, (ds, t, used + 1))

for d in dist:
    print(sum(d))
0