結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 RE -
testcase_02 AC 42 ms
52,736 KB
testcase_03 WA -
testcase_04 AC 45 ms
53,120 KB
testcase_05 AC 103 ms
76,928 KB
testcase_06 AC 48 ms
58,624 KB
testcase_07 AC 44 ms
53,376 KB
testcase_08 AC 71 ms
67,072 KB
testcase_09 AC 44 ms
52,992 KB
testcase_10 AC 46 ms
58,496 KB
testcase_11 AC 48 ms
58,368 KB
testcase_12 RE -
testcase_13 AC 45 ms
53,504 KB
testcase_14 AC 42 ms
53,888 KB
testcase_15 AC 46 ms
58,240 KB
testcase_16 AC 45 ms
53,632 KB
testcase_17 AC 61 ms
65,152 KB
testcase_18 AC 43 ms
52,736 KB
testcase_19 AC 49 ms
58,368 KB
testcase_20 AC 40 ms
52,480 KB
testcase_21 AC 46 ms
53,248 KB
testcase_22 AC 41 ms
52,992 KB
testcase_23 AC 47 ms
58,752 KB
testcase_24 AC 44 ms
53,376 KB
testcase_25 RE -
testcase_26 WA -
testcase_27 RE -
testcase_28 AC 65 ms
65,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify,heappop,heappush

N,M=map(int,input().split())
E=[[] for _ in range(N)]
C_max=0

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))

    C_max=max(C_max,c)

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

inf=float("inf")
D=[[inf]*(C_max+2) 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]
        u=min(C_max+1,t+T[b])
        if k<D[b][t+u]:
            D[b][t+u]=k
            heappush(Q,(k,b,u))

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