結果

問題 No.807 umg tours
ユーザー OKCH3COOHOKCH3COOH
提出日時 2019-11-13 20:54:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 874 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 183,936 KB
最終ジャッジ日時 2024-09-21 21:13:36
合計ジャッジ時間 39,530 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
11,136 KB
testcase_01 AC 34 ms
10,880 KB
testcase_02 AC 41 ms
11,264 KB
testcase_03 AC 35 ms
11,136 KB
testcase_04 AC 33 ms
11,136 KB
testcase_05 AC 34 ms
11,008 KB
testcase_06 AC 36 ms
11,264 KB
testcase_07 AC 35 ms
11,264 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 31 ms
10,880 KB
testcase_11 AC 2,943 ms
152,576 KB
testcase_12 AC 2,076 ms
109,184 KB
testcase_13 AC 3,056 ms
152,192 KB
testcase_14 AC 1,232 ms
72,192 KB
testcase_15 AC 876 ms
58,368 KB
testcase_16 AC 3,284 ms
158,848 KB
testcase_17 AC 3,921 ms
183,936 KB
testcase_18 AC 3,954 ms
181,760 KB
testcase_19 AC 3,905 ms
177,152 KB
testcase_20 AC 1,530 ms
98,176 KB
testcase_21 AC 1,631 ms
101,760 KB
testcase_22 AC 653 ms
50,176 KB
testcase_23 AC 494 ms
41,728 KB
testcase_24 AC 1,910 ms
141,296 KB
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop

def sol():
    N, M = map(int, input().split())
    edges = [[] for _ in range(2 * N)]

    for _ in range(M):
        fr, to, cost = map(int, input().split())
        fr -= 1
        to -= 1
        edges[fr].append((to, cost))
        edges[to].append((fr, cost))
        edges[fr + N].append((to + N, cost))
        edges[to + N].append((fr + N, cost))
        edges[fr].append((to + N, 0))
        edges[to].append((fr + N, 0))

    que = [(0, 0)]
    minDist = [float('inf')] * (2 * N)
    while que:
        dist, now = heappop(que)
        if minDist[now] <= dist:
            continue
        minDist[now] = dist
        for to, cost in edges[now]:
            if minDist[to] > dist + cost:
                heappush(que, (dist + cost, to))

    print(0)
    for i in range(1, N):
        print(minDist[i] + minDist[i + N])

sol()
0