結果

問題 No.1449 新プロランド
ユーザー shiomusubi496shiomusubi496
提出日時 2021-03-25 09:55:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-06-06 10:49:06
合計ジャッジ時間 3,511 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
11,008 KB
testcase_01 AC 38 ms
10,880 KB
testcase_02 AC 49 ms
11,008 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 31 ms
11,008 KB
testcase_05 AC 211 ms
13,568 KB
testcase_06 AC 146 ms
12,544 KB
testcase_07 AC 83 ms
11,904 KB
testcase_08 AC 143 ms
12,928 KB
testcase_09 AC 109 ms
11,648 KB
testcase_10 AC 86 ms
12,032 KB
testcase_11 AC 47 ms
11,648 KB
testcase_12 AC 134 ms
12,672 KB
testcase_13 AC 114 ms
11,776 KB
testcase_14 AC 45 ms
11,648 KB
testcase_15 AC 162 ms
12,800 KB
testcase_16 AC 109 ms
12,032 KB
testcase_17 AC 120 ms
12,288 KB
testcase_18 AC 29 ms
11,008 KB
testcase_19 AC 30 ms
11,392 KB
testcase_20 AC 27 ms
10,880 KB
testcase_21 AC 58 ms
11,648 KB
testcase_22 AC 45 ms
11,008 KB
testcase_23 AC 72 ms
12,032 KB
testcase_24 AC 93 ms
11,520 KB
testcase_25 AC 29 ms
10,880 KB
testcase_26 AC 34 ms
10,880 KB
testcase_27 AC 226 ms
13,696 KB
testcase_28 AC 150 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

INF=10**18
N,M=map(int,input().split())

G=[[]for i in range(N)]
for i in range(M):
    A,B,C=map(int,input().split())
    G[A-1]+=[(B-1,C)]
    G[B-1]+=[(A-1,C)]
T=list(map(int,input().split()))

dist=[[INF]*1002 for i in range(N)]
dist[0][0]=0

PQ=[(0,0,0)]
while PQ:
    c,v,p=heapq.heappop(PQ)
    if dist[v][p]<c:
        continue
    c+=T[v]
    p=min(p+T[v],1001)
    for e in G[v]:
        if dist[e[0]][p]>c+e[1]//p:
            dist[e[0]][p]=c+e[1]//p
            heapq.heappush(PQ,(c+e[1]//p,e[0],p))
print(min(dist[N-1]))
0