結果

問題 No.1449 新プロランド
ユーザー 👑 KazunKazun
提出日時 2021-05-19 13:18:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 624 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 175,744 KB
最終ジャッジ日時 2024-12-24 02:08:23
合計ジャッジ時間 3,886 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
52,736 KB
testcase_01 AC 48 ms
52,480 KB
testcase_02 AC 52 ms
57,984 KB
testcase_03 AC 47 ms
52,608 KB
testcase_04 AC 48 ms
52,224 KB
testcase_05 AC 213 ms
175,744 KB
testcase_06 AC 84 ms
93,056 KB
testcase_07 AC 79 ms
88,704 KB
testcase_08 AC 151 ms
151,424 KB
testcase_09 AC 57 ms
61,312 KB
testcase_10 AC 98 ms
107,648 KB
testcase_11 AC 106 ms
115,712 KB
testcase_12 AC 191 ms
141,056 KB
testcase_13 AC 63 ms
67,712 KB
testcase_14 AC 108 ms
120,576 KB
testcase_15 AC 88 ms
95,488 KB
testcase_16 AC 67 ms
73,984 KB
testcase_17 AC 109 ms
100,864 KB
testcase_18 AC 52 ms
57,472 KB
testcase_19 AC 82 ms
92,288 KB
testcase_20 AC 47 ms
52,352 KB
testcase_21 AC 82 ms
89,088 KB
testcase_22 AC 51 ms
57,728 KB
testcase_23 AC 99 ms
111,360 KB
testcase_24 AC 55 ms
60,032 KB
testcase_25 AC 52 ms
59,520 KB
testcase_26 AC 47 ms
52,480 KB
testcase_27 AC 300 ms
171,904 KB
testcase_28 AC 95 ms
81,408 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*10*(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