結果

問題 No.807 umg tours
ユーザー 👑 KazunKazun
提出日時 2021-03-02 18:22:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,366 ms / 4,000 ms
コード長 699 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 167,752 KB
最終ジャッジ日時 2024-10-03 01:54:31
合計ジャッジ時間 15,648 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
61,696 KB
testcase_01 AC 54 ms
61,824 KB
testcase_02 AC 59 ms
64,256 KB
testcase_03 AC 59 ms
63,872 KB
testcase_04 AC 52 ms
61,568 KB
testcase_05 AC 53 ms
61,312 KB
testcase_06 AC 57 ms
63,360 KB
testcase_07 AC 58 ms
63,104 KB
testcase_08 AC 43 ms
52,608 KB
testcase_09 AC 42 ms
53,248 KB
testcase_10 AC 44 ms
53,504 KB
testcase_11 AC 776 ms
137,436 KB
testcase_12 AC 819 ms
125,820 KB
testcase_13 AC 1,049 ms
145,712 KB
testcase_14 AC 545 ms
107,224 KB
testcase_15 AC 432 ms
99,684 KB
testcase_16 AC 1,086 ms
150,280 KB
testcase_17 AC 1,337 ms
163,312 KB
testcase_18 AC 1,317 ms
163,264 KB
testcase_19 AC 1,326 ms
160,940 KB
testcase_20 AC 717 ms
125,724 KB
testcase_21 AC 722 ms
128,844 KB
testcase_22 AC 362 ms
98,064 KB
testcase_23 AC 336 ms
94,532 KB
testcase_24 AC 605 ms
153,596 KB
testcase_25 AC 1,366 ms
167,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from heapq import heapify,heappop,heappush
input=sys.stdin.readline
write=sys.stdout.write

N,M=map(int,input().split())
E=[[] for _ in range(2*N+1)]

for _ in range(M):
    a,b,c=map(int,input().split())
    E[a].append((b,c))
    E[a].append((b+N,c))
    E[a+N].append((b+N,c))

    E[b].append((a,c))
    E[b].append((a+N,c))
    E[b+N].append((a+N,c))

inf=float("inf")
T=[inf]*(2*N+1)
T[1]=0
Q=[(0,1)]

while Q:
    d,x=heappop(Q)
    if T[x]<d:
        continue

    for y,c in E[x]:
        if x<=N and N<y:
            c=0

        if T[y]>d+c:
            T[y]=d+c
            heappush(Q,(d+c,y))

X=[T[x]+T[x+N] if x!=1 else 0 for x in range(1,N+1)]
write("\n".join(map(str,X)))
0