結果

問題 No.1449 新プロランド
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-03-31 21:50:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 442 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 84,720 KB
最終ジャッジ日時 2024-06-06 11:04:10
合計ジャッジ時間 6,367 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
61,952 KB
testcase_01 AC 96 ms
76,288 KB
testcase_02 AC 125 ms
76,544 KB
testcase_03 AC 72 ms
70,656 KB
testcase_04 AC 93 ms
76,160 KB
testcase_05 AC 378 ms
83,032 KB
testcase_06 AC 277 ms
80,316 KB
testcase_07 AC 182 ms
78,032 KB
testcase_08 AC 274 ms
80,040 KB
testcase_09 AC 313 ms
80,932 KB
testcase_10 AC 188 ms
78,240 KB
testcase_11 AC 123 ms
77,028 KB
testcase_12 AC 250 ms
79,540 KB
testcase_13 AC 240 ms
78,604 KB
testcase_14 AC 123 ms
76,932 KB
testcase_15 AC 262 ms
79,464 KB
testcase_16 AC 222 ms
78,420 KB
testcase_17 AC 247 ms
79,096 KB
testcase_18 AC 41 ms
52,480 KB
testcase_19 AC 42 ms
53,504 KB
testcase_20 AC 41 ms
52,224 KB
testcase_21 AC 167 ms
77,880 KB
testcase_22 AC 129 ms
76,408 KB
testcase_23 AC 150 ms
77,148 KB
testcase_24 AC 211 ms
77,704 KB
testcase_25 AC 45 ms
52,608 KB
testcase_26 AC 78 ms
70,656 KB
testcase_27 AC 442 ms
84,720 KB
testcase_28 AC 385 ms
82,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
n,m = map(int,input().split())

e = [[] for i in range(n)]
for i in range(m):
    a,b,c = map(int,input().split())
    a -= 1
    b -= 1
    e[a].append((b,c))
    e[b].append((a,c))
T = list(map(int,input().split()))

inf = 10**10
dis = [[inf]*(1002) for i in range(n)]

h = [(0,0,0)]
while h:
    d,p,now = heappop(h)
    p *= -1
    if dis[now][p] <= d:
        continue
    dis[now][p] = d
    np = min(p+T[now],1001)
    for nex,c in e[now]:

        if dis[nex][np] > dis[now][p]+T[now]+c//np:
            heappush(h, (dis[now][p]+T[now]+c//np,-np,nex))
print(min(dis[-1]))
0