結果

問題 No.807 umg tours
ユーザー i_takui_taku
提出日時 2024-06-07 10:48:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,132 ms / 4,000 ms
コード長 727 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 158,556 KB
最終ジャッジ日時 2024-06-07 10:49:07
合計ジャッジ時間 26,945 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
61,696 KB
testcase_01 AC 58 ms
62,976 KB
testcase_02 AC 60 ms
65,280 KB
testcase_03 AC 58 ms
64,256 KB
testcase_04 AC 51 ms
61,568 KB
testcase_05 AC 51 ms
62,080 KB
testcase_06 AC 62 ms
66,176 KB
testcase_07 AC 57 ms
64,792 KB
testcase_08 AC 41 ms
53,376 KB
testcase_09 AC 42 ms
53,248 KB
testcase_10 AC 42 ms
53,504 KB
testcase_11 AC 1,226 ms
112,848 KB
testcase_12 AC 1,625 ms
117,220 KB
testcase_13 AC 1,902 ms
126,272 KB
testcase_14 AC 918 ms
100,352 KB
testcase_15 AC 602 ms
93,524 KB
testcase_16 AC 1,918 ms
128,264 KB
testcase_17 AC 2,789 ms
145,888 KB
testcase_18 AC 2,605 ms
143,648 KB
testcase_19 AC 2,353 ms
137,160 KB
testcase_20 AC 1,291 ms
111,504 KB
testcase_21 AC 1,287 ms
112,980 KB
testcase_22 AC 582 ms
90,388 KB
testcase_23 AC 451 ms
87,628 KB
testcase_24 AC 1,715 ms
151,880 KB
testcase_25 AC 3,132 ms
158,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush


N, M = map(int, input().split())
g = [[] for _ in range(N)]
for _ in range(M):
    a, b, c = map(int, input().split())
    a, b = a - 1, b - 1
    g[a].append((b, c))
    g[b].append((a, c))
dist = [[1 << 60] * N for _ in range(3)]
dist[0][0] = dist[1][0] = 0
hq = []
heappush(hq, (0, 0, 0))
heappush(hq, (0, 0, 1))
while hq:
    d, v, k = heappop(hq)
    if k == 2 or dist[k][v] < d:
        continue
    for nv, c in g[v]:
        if d + c < dist[k][nv]:
            dist[k][nv] = d + c
            heappush(hq, (d + c, nv, k))
        if d < dist[k + 1][nv]:
            dist[k + 1][nv] = d
            heappush(hq, (d, nv, k + 1))
for i in range(N):
    print(dist[0][i] + dist[1][i])
0