結果

問題 No.1449 新プロランド
ユーザー KazunKazun
提出日時 2021-05-19 13:16:56
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 621 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 86,604 KB
最終ジャッジ日時 2024-06-06 11:09:18
合計ジャッジ時間 2,703 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,616 KB
testcase_01 AC 40 ms
53,344 KB
testcase_02 AC 40 ms
53,484 KB
testcase_03 RE -
testcase_04 AC 41 ms
52,664 KB
testcase_05 AC 101 ms
81,736 KB
testcase_06 AC 45 ms
62,984 KB
testcase_07 AC 45 ms
62,428 KB
testcase_08 AC 66 ms
73,320 KB
testcase_09 AC 44 ms
59,972 KB
testcase_10 AC 45 ms
63,596 KB
testcase_11 AC 46 ms
63,952 KB
testcase_12 AC 104 ms
80,964 KB
testcase_13 AC 43 ms
59,284 KB
testcase_14 AC 46 ms
64,656 KB
testcase_15 AC 46 ms
62,396 KB
testcase_16 AC 45 ms
60,540 KB
testcase_17 AC 60 ms
68,748 KB
testcase_18 AC 40 ms
53,424 KB
testcase_19 AC 45 ms
62,332 KB
testcase_20 AC 41 ms
53,200 KB
testcase_21 AC 44 ms
62,684 KB
testcase_22 AC 41 ms
52,944 KB
testcase_23 AC 47 ms
63,484 KB
testcase_24 AC 43 ms
59,700 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 167 ms
86,604 KB
testcase_28 AC 64 ms
69,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify,heappop,heappush

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

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

T=list(map(int,input().split()))
T_max=max(T)

inf=float("inf")
D=[[inf]*(T_max*(N-1)+1) for _ in range(N)]

D[0][T[0]]=T[0]
Q=[(T[0],0,T[0])]
heapify(Q)

while Q:
    d,x,t=heappop(Q)

    if x==N-1:
        break

    if D[x][t]<d:
        continue

    for b,c in E[x]:
        k=d+c//t+T[b]
        if k<D[b][t+T[b]]:
            D[b][t+T[b]]=k
            heappush(Q,(k,b,t+T[b]))

print(min(D[-1]))
0