結果

問題 No.807 umg tours
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-10 17:03:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,373 ms / 4,000 ms
コード長 948 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 162,896 KB
最終ジャッジ日時 2024-05-05 04:20:49
合計ジャッジ時間 24,103 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
61,568 KB
testcase_01 AC 54 ms
62,592 KB
testcase_02 AC 70 ms
64,640 KB
testcase_03 AC 66 ms
64,384 KB
testcase_04 AC 57 ms
61,696 KB
testcase_05 AC 48 ms
61,056 KB
testcase_06 AC 59 ms
64,896 KB
testcase_07 AC 57 ms
63,616 KB
testcase_08 AC 38 ms
53,504 KB
testcase_09 AC 40 ms
53,760 KB
testcase_10 AC 41 ms
53,504 KB
testcase_11 AC 1,003 ms
115,836 KB
testcase_12 AC 1,328 ms
126,928 KB
testcase_13 AC 1,547 ms
136,004 KB
testcase_14 AC 746 ms
105,644 KB
testcase_15 AC 526 ms
97,680 KB
testcase_16 AC 1,603 ms
136,648 KB
testcase_17 AC 2,313 ms
157,140 KB
testcase_18 AC 2,133 ms
156,044 KB
testcase_19 AC 2,055 ms
151,552 KB
testcase_20 AC 1,134 ms
130,084 KB
testcase_21 AC 1,223 ms
132,876 KB
testcase_22 AC 525 ms
98,888 KB
testcase_23 AC 474 ms
94,820 KB
testcase_24 AC 1,124 ms
156,748 KB
testcase_25 AC 2,373 ms
162,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify as hpi , heappop as hpop , heappush as hpush
n,m=map(int,input().split())
g = [[] for i in range(n)]
for _ in range(m):
    x,y,z = map(int,input().split())
    x-=1
    y-=1
    g[x].append((y,z))
    g[y].append((x,z))

inf=float('inf')
d = [[inf,inf] for i in range(n)]
d[0][0] = 0
d[0][1] = 0
done=[[0,0] for i in range(n)]
hp=[]

def  daiku(i,f):
    hpush(hp,(d[i][f],i,f))
    
    while hp:
        _ ,now,ch= hpop(hp)
        if done[now][ch]:
            continue
            
        done[now][ch] = 1
    
        for go,cost in g[now]:
            if d[go][ch] > d[now][ch] + cost:
                d[go][ch] = d[now][ch] + cost
                hpush(hp,(d[go][ch],go,ch))
            if ch == 0:
                if d[go][ch+1] > d[now][ch]:
                    d[go][ch+1] = d[now][ch]
                    hpush(hp,(d[go][ch+1],go,ch+1))
            
daiku(0,0)
for i in range(n):
    print(d[i][0] + d[i][1])
0