結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,880 KB
testcase_01 AC 40 ms
11,008 KB
testcase_02 AC 54 ms
10,880 KB
testcase_03 AC 33 ms
10,880 KB
testcase_04 AC 36 ms
10,752 KB
testcase_05 AC 241 ms
13,440 KB
testcase_06 AC 157 ms
12,544 KB
testcase_07 AC 90 ms
12,160 KB
testcase_08 AC 161 ms
12,800 KB
testcase_09 AC 119 ms
11,648 KB
testcase_10 AC 96 ms
12,160 KB
testcase_11 AC 52 ms
11,520 KB
testcase_12 AC 148 ms
12,672 KB
testcase_13 AC 125 ms
11,648 KB
testcase_14 AC 49 ms
11,520 KB
testcase_15 AC 178 ms
12,672 KB
testcase_16 AC 117 ms
12,160 KB
testcase_17 AC 130 ms
12,416 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 33 ms
11,264 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 63 ms
11,648 KB
testcase_22 AC 48 ms
11,008 KB
testcase_23 AC 80 ms
12,032 KB
testcase_24 AC 100 ms
11,520 KB
testcase_25 AC 32 ms
10,752 KB
testcase_26 AC 37 ms
11,008 KB
testcase_27 AC 248 ms
13,696 KB
testcase_28 AC 171 ms
12,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

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

assert 2<=N<=100
assert 1<=M<=100

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

assert len(T)==N

for i in range(len(T)):
    if i==0:
        assert T[i]!=0
    elif i==N-1:
        assert T[i]==0
    else:
        assert 0<=T[i]<=1000

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