結果

問題 No.1449 新プロランド
ユーザー 👑 rin204rin204
提出日時 2022-01-18 04:51:30
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 669 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 80,316 KB
最終ジャッジ日時 2024-06-06 11:10:22
合計ジャッジ時間 5,021 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
61,568 KB
testcase_01 AC 77 ms
76,160 KB
testcase_02 AC 97 ms
76,332 KB
testcase_03 AC 54 ms
64,512 KB
testcase_04 AC 84 ms
76,032 KB
testcase_05 AC 272 ms
80,316 KB
testcase_06 AC 233 ms
79,184 KB
testcase_07 AC 128 ms
77,028 KB
testcase_08 AC 221 ms
79,488 KB
testcase_09 AC 142 ms
77,100 KB
testcase_10 AC 155 ms
78,180 KB
testcase_11 AC 120 ms
77,684 KB
testcase_12 AC 200 ms
78,584 KB
testcase_13 AC 150 ms
77,256 KB
testcase_14 AC 100 ms
76,616 KB
testcase_15 AC 213 ms
79,252 KB
testcase_16 AC 161 ms
77,356 KB
testcase_17 AC 172 ms
77,528 KB
testcase_18 AC 39 ms
52,992 KB
testcase_19 AC 38 ms
53,248 KB
testcase_20 AC 39 ms
52,736 KB
testcase_21 AC 111 ms
76,672 KB
testcase_22 AC 113 ms
76,176 KB
testcase_23 AC 143 ms
77,320 KB
testcase_24 AC 143 ms
76,548 KB
testcase_25 WA -
testcase_26 AC 65 ms
70,144 KB
testcase_27 AC 241 ms
80,100 KB
testcase_28 AC 177 ms
77,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

n, m = map(int, input().split())
edges = [[] for _ in range(n)]
for _ in range(m):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    edges[a].append((b, c))
    edges[b].append((a, c))
T = list(map(int, input().split()))
inf = 1 << 60
dist = [[inf] * 1001 for _ in range(n)]
dist[0][0] = 0
hq = [(0, 0, 0)]
while hq:
    d, pos, p = heappop(hq)
    if dist[pos][p] < d:
        continue
    p += T[pos]
    p = min(p, 1000)
    d += T[pos]
    for npos, c in edges[pos]:
        tmp = min(d + c // p, 1000)
        if dist[npos][p] > tmp:
            dist[npos][p] = tmp
            heappush(hq, (tmp, npos, p))
print(min(dist[-1]))
0