結果

問題 No.807 umg tours
ユーザー tempura_pptempura_pp
提出日時 2019-03-17 01:36:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,667 ms / 4,000 ms
コード長 816 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 185,344 KB
最終ジャッジ日時 2024-07-05 01:17:32
合計ジャッジ時間 34,938 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
11,008 KB
testcase_01 AC 43 ms
10,880 KB
testcase_02 AC 37 ms
11,136 KB
testcase_03 AC 35 ms
11,136 KB
testcase_04 AC 33 ms
10,880 KB
testcase_05 AC 34 ms
11,008 KB
testcase_06 AC 36 ms
11,008 KB
testcase_07 AC 34 ms
11,008 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 2,236 ms
136,704 KB
testcase_12 AC 1,949 ms
107,392 KB
testcase_13 AC 2,859 ms
146,688 KB
testcase_14 AC 1,148 ms
70,784 KB
testcase_15 AC 832 ms
57,728 KB
testcase_16 AC 2,953 ms
154,092 KB
testcase_17 AC 3,667 ms
178,816 KB
testcase_18 AC 3,603 ms
176,896 KB
testcase_19 AC 3,334 ms
172,800 KB
testcase_20 AC 1,535 ms
98,176 KB
testcase_21 AC 1,585 ms
101,632 KB
testcase_22 AC 634 ms
50,176 KB
testcase_23 AC 509 ms
41,856 KB
testcase_24 AC 1,705 ms
138,508 KB
testcase_25 AC 3,553 ms
185,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush
def solve() : 
    N, M = map(int, input().split())

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

    dist=[float('inf')]*(2*N)
    dist[0]=dist[N]=0

    pq = []
    heappush(pq, (0,0))
    heappush(pq, (0,N))
    while pq:
        d, cur = heappop(pq)
        if d > dist[cur]: continue

        for cost, to in edge[cur]:
            if dist[to]>d+cost : 
                dist[to]=d+cost
                heappush(pq, (d+cost,to))
    for i in range(N) :
        print(dist[i]+dist[i+N])
solve()
0