結果

問題 No.807 umg tours
ユーザー tempura_pptempura_pp
提出日時 2019-03-17 01:54:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,615 ms / 4,000 ms
コード長 866 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 150,288 KB
最終ジャッジ日時 2024-11-23 18:49:56
合計ジャッジ時間 24,415 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
61,440 KB
testcase_01 AC 59 ms
61,696 KB
testcase_02 AC 65 ms
64,384 KB
testcase_03 AC 62 ms
63,744 KB
testcase_04 AC 54 ms
60,928 KB
testcase_05 AC 57 ms
61,568 KB
testcase_06 AC 65 ms
65,024 KB
testcase_07 AC 61 ms
63,616 KB
testcase_08 AC 43 ms
52,992 KB
testcase_09 AC 43 ms
53,120 KB
testcase_10 AC 45 ms
52,992 KB
testcase_11 AC 1,169 ms
112,568 KB
testcase_12 AC 1,454 ms
120,388 KB
testcase_13 AC 1,730 ms
129,256 KB
testcase_14 AC 801 ms
101,996 KB
testcase_15 AC 544 ms
96,216 KB
testcase_16 AC 1,604 ms
129,748 KB
testcase_17 AC 2,490 ms
146,972 KB
testcase_18 AC 2,515 ms
146,680 KB
testcase_19 AC 2,215 ms
141,824 KB
testcase_20 AC 1,099 ms
120,032 KB
testcase_21 AC 1,168 ms
122,832 KB
testcase_22 AC 550 ms
95,988 KB
testcase_23 AC 451 ms
91,252 KB
testcase_24 AC 1,177 ms
146,272 KB
testcase_25 AC 2,615 ms
150,288 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