結果

問題 No.1449 新プロランド
ユーザー DrDrpilotDrDrpilot
提出日時 2022-02-23 16:45:37
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 730 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,192 KB
最終ジャッジ日時 2024-06-06 11:10:27
合計ジャッジ時間 4,399 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,632 KB
testcase_01 AC 75 ms
71,424 KB
testcase_02 AC 110 ms
76,676 KB
testcase_03 AC 42 ms
53,120 KB
testcase_04 AC 69 ms
69,760 KB
testcase_05 AC 175 ms
78,060 KB
testcase_06 AC 161 ms
78,092 KB
testcase_07 AC 127 ms
76,632 KB
testcase_08 AC 149 ms
77,868 KB
testcase_09 AC 185 ms
78,192 KB
testcase_10 AC 139 ms
77,896 KB
testcase_11 AC 117 ms
77,044 KB
testcase_12 AC 123 ms
77,052 KB
testcase_13 AC 144 ms
77,116 KB
testcase_14 AC 82 ms
73,600 KB
testcase_15 AC 160 ms
78,032 KB
testcase_16 AC 139 ms
77,632 KB
testcase_17 AC 149 ms
77,832 KB
testcase_18 AC 41 ms
52,352 KB
testcase_19 AC 40 ms
53,376 KB
testcase_20 AC 40 ms
52,608 KB
testcase_21 AC 79 ms
73,600 KB
testcase_22 AC 85 ms
74,368 KB
testcase_23 AC 124 ms
77,052 KB
testcase_24 AC 155 ms
77,340 KB
testcase_25 WA -
testcase_26 AC 65 ms
67,072 KB
testcase_27 AC 174 ms
78,128 KB
testcase_28 AC 182 ms
77,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
n,m=map(int,input().split())
g=[[] for _ in range(n)]
for _ in range(m):
    a,b,c=map(int,input().split())
    g[a-1].append((b-1,c))
    g[b-1].append((a-1,c))
t=list(map(int,input().split()))
time=[[float('inf')]*501 for _ in range(n)]
time[0][0]=0
q=[(0,0,0)]
while q:
    now_time,now_place,eat_time=heapq.heappop(q)
    if time[now_place][eat_time]<now_time:
        continue
    now_time+=t[now_place]
    eat_time=min(eat_time+t[now_place],500)
    for to_place,to_dst in g[now_place]:
        if time[to_place][eat_time]>now_time+to_dst//eat_time:
            time[to_place][eat_time]=now_time+to_dst//eat_time
            heapq.heappush(q,(now_time+to_dst//eat_time,to_place,eat_time))
print(min(time[n-1]))
0