結果

問題 No.807 umg tours
ユーザー ttrttr
提出日時 2020-06-21 19:13:23
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 651 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 679,364 KB
最終ジャッジ日時 2024-07-03 18:12:18
合計ジャッジ時間 20,183 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
66,212 KB
testcase_01 AC 62 ms
67,924 KB
testcase_02 AC 63 ms
68,400 KB
testcase_03 AC 62 ms
68,668 KB
testcase_04 AC 55 ms
65,960 KB
testcase_05 AC 56 ms
66,712 KB
testcase_06 AC 63 ms
68,636 KB
testcase_07 AC 60 ms
67,368 KB
testcase_08 AC 41 ms
54,648 KB
testcase_09 AC 49 ms
62,420 KB
testcase_10 AC 50 ms
63,672 KB
testcase_11 AC 1,355 ms
229,540 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 AC 645 ms
162,056 KB
testcase_15 AC 562 ms
157,932 KB
testcase_16 AC 1,571 ms
287,180 KB
testcase_17 MLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

from collections import deque
inf = 10**15
d1 = [inf]*N
d2 = [inf]*N
q = deque()
q.append((0, 0, 0))
while q:
    temp = q.popleft()
    u = temp[0]
    len = temp[1]
    dist = temp[2]
    d1[u] = min(d1[u], dist)
    d2[u] = min(d2[u], dist-len)
    for e in E[u]:
        r = e//N
        v = e%N
        if d1[v] <= dist+r and d2[v] <= dist+r-max(len, r):
            continue
        q.append((v, max(len, r), dist+r))

for i in range(N):
    print(d1[i]+d2[i])
0