結果

問題 No.1449 新プロランド
ユーザー DrDrpilotDrDrpilot
提出日時 2022-02-23 16:42:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 732 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-06-06 11:10:12
合計ジャッジ時間 3,589 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 37 ms
10,880 KB
testcase_02 AC 48 ms
11,008 KB
testcase_03 AC 34 ms
10,880 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 205 ms
13,568 KB
testcase_06 AC 138 ms
12,544 KB
testcase_07 AC 80 ms
11,904 KB
testcase_08 AC 139 ms
12,928 KB
testcase_09 AC 110 ms
11,776 KB
testcase_10 AC 89 ms
12,032 KB
testcase_11 AC 47 ms
11,648 KB
testcase_12 AC 131 ms
12,672 KB
testcase_13 AC 110 ms
11,776 KB
testcase_14 AC 44 ms
11,648 KB
testcase_15 AC 155 ms
12,928 KB
testcase_16 AC 106 ms
12,032 KB
testcase_17 AC 115 ms
12,288 KB
testcase_18 AC 27 ms
10,880 KB
testcase_19 AC 28 ms
11,264 KB
testcase_20 AC 27 ms
10,752 KB
testcase_21 AC 57 ms
11,776 KB
testcase_22 AC 43 ms
11,008 KB
testcase_23 AC 69 ms
12,160 KB
testcase_24 AC 90 ms
11,648 KB
testcase_25 WA -
testcase_26 AC 32 ms
10,880 KB
testcase_27 AC 223 ms
13,696 KB
testcase_28 AC 156 ms
12,288 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')]*1001 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],1000)
    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