結果

問題 No.807 umg tours
ユーザー tempura_pptempura_pp
提出日時 2019-03-17 01:53:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,869 ms / 4,000 ms
コード長 866 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 97,400 KB
最終ジャッジ日時 2024-11-23 18:47:24
合計ジャッジ時間 26,959 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 36 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 34 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 1,627 ms
64,768 KB
testcase_12 AC 1,554 ms
59,136 KB
testcase_13 AC 2,230 ms
74,880 KB
testcase_14 AC 822 ms
40,448 KB
testcase_15 AC 597 ms
33,664 KB
testcase_16 AC 2,098 ms
76,728 KB
testcase_17 AC 2,753 ms
92,544 KB
testcase_18 AC 2,637 ms
91,392 KB
testcase_19 AC 2,645 ms
88,320 KB
testcase_20 AC 1,307 ms
64,128 KB
testcase_21 AC 1,310 ms
66,816 KB
testcase_22 AC 480 ms
35,200 KB
testcase_23 AC 372 ms
29,952 KB
testcase_24 AC 1,364 ms
77,312 KB
testcase_25 AC 2,869 ms
97,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    edge = [[] for i in range(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))

    dist=[[float('inf'),float('inf')]for i in range(N)]
    dist[0]=[0,0]

    pq = []
    heappush(pq, (0,0,0))
    heappush(pq, (0,1,0))
    while pq:
        d, num, cur = heappop(pq)
        if d > dist[cur][num]: continue
        for cost, to in edge[cur]:
            ret = d+cost
            if dist[to][num]>ret : 
                dist[to][num]=ret
                heappush(pq, (ret,num,to))
            if num == 0 :
                if dist[to][1]>d : 
                    dist[to][1]=d
                    heappush(pq, (d,1,to))
    for x,y in dist :
        print(x+y)
solve()
0