結果

問題 No.807 umg tours
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-15 12:01:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,121 ms / 4,000 ms
コード長 921 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 179,956 KB
最終ジャッジ日時 2024-12-26 08:29:26
合計ジャッジ時間 30,305 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
70,528 KB
testcase_01 AC 104 ms
71,424 KB
testcase_02 AC 109 ms
73,600 KB
testcase_03 AC 112 ms
73,216 KB
testcase_04 AC 102 ms
70,016 KB
testcase_05 AC 104 ms
71,168 KB
testcase_06 AC 111 ms
72,960 KB
testcase_07 AC 111 ms
72,832 KB
testcase_08 AC 86 ms
67,200 KB
testcase_09 AC 94 ms
67,712 KB
testcase_10 AC 92 ms
67,712 KB
testcase_11 AC 1,412 ms
146,176 KB
testcase_12 AC 1,769 ms
134,944 KB
testcase_13 AC 2,102 ms
156,160 KB
testcase_14 AC 1,068 ms
114,452 KB
testcase_15 AC 827 ms
105,600 KB
testcase_16 AC 2,065 ms
160,408 KB
testcase_17 AC 2,811 ms
175,304 KB
testcase_18 AC 2,754 ms
174,404 KB
testcase_19 AC 2,374 ms
170,684 KB
testcase_20 AC 1,200 ms
127,172 KB
testcase_21 AC 1,234 ms
129,440 KB
testcase_22 AC 599 ms
99,712 KB
testcase_23 AC 566 ms
95,260 KB
testcase_24 AC 1,523 ms
164,388 KB
testcase_25 AC 3,121 ms
179,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from typing import Union
input=sys.stdin.readline

n,m=map(int,input().split())
abc=[list(map(int,input().split())) for _ in range(m)]
g=[[] for _ in range(n)]
for a,b,c in abc:
	a,b=a-1,b-1
	g[a].append([b,c])
	g[b].append([a,c])
"""
ダイクストラ
seen[v]:0にできる権利を使っていない場合のvまでの最短距離
seen[v+n]:0にできる権利を使った場合のvまでの最短距離
"""
inf=10**18
seen=[inf]*(2*n)
seen[0]=0
seen[0+n]=0
todo=[[0,0]]
from heapq import heappop,heappush
while todo:
	d,v=heappop(todo)
	if seen[v]<d:continue
	for nv,nd in g[v%n]:
		if v<n:
			if seen[nv]>seen[v]+nd:
				seen[nv]=seen[v]+nd
				heappush(todo,[seen[nv],nv])
			if seen[nv+n]>seen[v]:
				seen[nv+n]=seen[v]
				heappush(todo,[seen[nv+n],nv+n])
		else:
			if seen[nv+n]>seen[v]+nd:
				seen[nv+n]=seen[v]+nd
				heappush(todo,[seen[nv+n],nv+n])
for v in range(n):
	print(seen[v]+seen[v+n])
0