結果

問題 No.807 umg tours
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-10-02 01:29:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,674 ms / 4,000 ms
コード長 811 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 203,432 KB
最終ジャッジ日時 2024-10-02 01:29:50
合計ジャッジ時間 18,273 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
66,772 KB
testcase_01 AC 59 ms
66,432 KB
testcase_02 AC 85 ms
76,672 KB
testcase_03 AC 93 ms
73,728 KB
testcase_04 AC 56 ms
64,256 KB
testcase_05 AC 60 ms
66,176 KB
testcase_06 AC 96 ms
76,544 KB
testcase_07 AC 75 ms
71,808 KB
testcase_08 AC 42 ms
52,992 KB
testcase_09 AC 46 ms
59,776 KB
testcase_10 AC 46 ms
60,544 KB
testcase_11 AC 1,130 ms
172,544 KB
testcase_12 AC 984 ms
137,488 KB
testcase_13 AC 1,232 ms
173,740 KB
testcase_14 AC 584 ms
106,928 KB
testcase_15 AC 456 ms
101,116 KB
testcase_16 AC 1,350 ms
177,184 KB
testcase_17 AC 1,674 ms
203,432 KB
testcase_18 AC 1,623 ms
201,656 KB
testcase_19 AC 1,507 ms
196,112 KB
testcase_20 AC 725 ms
124,604 KB
testcase_21 AC 752 ms
125,360 KB
testcase_22 AC 362 ms
97,836 KB
testcase_23 AC 305 ms
92,980 KB
testcase_24 AC 787 ms
166,612 KB
testcase_25 AC 1,539 ms
194,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

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

INF = 10**18
D = [INF] * 2*N
hq = [(0, 0), (0, N)]
while hq:
    d, node = heappop(hq)
    if D[node] != INF:
        continue
    D[node] = d
    if node >= N:
        n = node - N
        for nex, c in graph[n]:
            if D[nex+N] == INF:
                heappush(hq, (d+c, nex+N))
    else:
        for nex, c in graph[node]:
            if D[nex] == INF:
                heappush(hq, (d+c, nex))
            if D[nex+N] == INF:
                heappush(hq, (d, nex+N))

ans = [D[i]+D[i+N] for i in range(N)]
print(*ans, sep='\n')
0