結果

問題 No.1449 新プロランド
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-03-31 15:34:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 846 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 78,108 KB
最終ジャッジ日時 2024-06-06 10:58:52
合計ジャッジ時間 2,609 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,736 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 41 ms
52,480 KB
testcase_03 AC 41 ms
52,736 KB
testcase_04 AC 42 ms
53,120 KB
testcase_05 AC 96 ms
77,312 KB
testcase_06 AC 42 ms
53,632 KB
testcase_07 AC 41 ms
53,376 KB
testcase_08 AC 59 ms
65,536 KB
testcase_09 AC 40 ms
53,120 KB
testcase_10 AC 40 ms
53,376 KB
testcase_11 AC 42 ms
53,120 KB
testcase_12 AC 100 ms
77,440 KB
testcase_13 AC 40 ms
53,248 KB
testcase_14 AC 41 ms
53,248 KB
testcase_15 AC 41 ms
53,504 KB
testcase_16 AC 42 ms
53,504 KB
testcase_17 AC 59 ms
64,768 KB
testcase_18 AC 42 ms
53,120 KB
testcase_19 AC 40 ms
53,248 KB
testcase_20 AC 40 ms
52,608 KB
testcase_21 AC 40 ms
53,120 KB
testcase_22 AC 41 ms
52,864 KB
testcase_23 AC 41 ms
53,376 KB
testcase_24 AC 40 ms
52,864 KB
testcase_25 AC 41 ms
52,992 KB
testcase_26 AC 39 ms
52,608 KB
testcase_27 AC 161 ms
78,108 KB
testcase_28 AC 65 ms
67,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""



"""

import sys
from sys import stdin
import heapq

N,M = map(int,stdin.readline().split())

lis = [ [] for i in range(N) ]
for i in range(M):
    A,B,C = map(int,stdin.readline().split())
    A -= 1
    B -= 1

    lis[A].append( (B,C) )
    lis[B].append( (A,C) )

T = list(map(int,stdin.readline().split()))

dp = [[float("inf")] * 1002 for i in range(N)]

dp[0][T[0]] = T[0]

q = []
heapq.heappush( q , (T[0] , 0 , T[0]) )

while q:

    ncost , nv , np = heapq.heappop(q)
    if dp[nv][np] != ncost:
        continue

    if nv == N-1:
        print (ncost)
        sys.exit()

    for nexv,ecost in lis[nv]:

        nexcost = ncost + ecost // np + T[nexv]

        if dp[nexv][min(1001,np+T[nexv])] > nexcost:
            dp[nexv][min(1001,np+T[nexv])] = nexcost
            heapq.heappush(q , (nexcost,nexv,min(1001,np+T[nexv])) )
0