結果

問題 No.1449 新プロランド
ユーザー 👑 rin204rin204
提出日時 2023-08-25 23:49:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 259 ms / 2,000 ms
コード長 658 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 81,796 KB
実行使用メモリ 80,160 KB
最終ジャッジ日時 2024-06-06 18:45:42
合計ジャッジ時間 4,744 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
61,592 KB
testcase_01 AC 71 ms
74,396 KB
testcase_02 AC 92 ms
76,088 KB
testcase_03 AC 51 ms
65,296 KB
testcase_04 AC 79 ms
76,152 KB
testcase_05 AC 259 ms
80,160 KB
testcase_06 AC 221 ms
79,312 KB
testcase_07 AC 127 ms
77,152 KB
testcase_08 AC 203 ms
79,596 KB
testcase_09 AC 130 ms
77,208 KB
testcase_10 AC 143 ms
78,112 KB
testcase_11 AC 111 ms
77,344 KB
testcase_12 AC 186 ms
78,500 KB
testcase_13 AC 135 ms
76,944 KB
testcase_14 AC 92 ms
76,720 KB
testcase_15 AC 197 ms
78,792 KB
testcase_16 AC 145 ms
77,304 KB
testcase_17 AC 156 ms
77,752 KB
testcase_18 AC 34 ms
52,900 KB
testcase_19 AC 34 ms
53,800 KB
testcase_20 AC 34 ms
52,696 KB
testcase_21 AC 102 ms
76,532 KB
testcase_22 AC 102 ms
76,112 KB
testcase_23 AC 126 ms
77,476 KB
testcase_24 AC 121 ms
76,564 KB
testcase_25 AC 35 ms
54,392 KB
testcase_26 AC 57 ms
69,852 KB
testcase_27 AC 218 ms
80,160 KB
testcase_28 AC 159 ms
77,416 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] * 1002 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, 1001)
    d += T[pos]
    for npos, c in edges[pos]:
        tmp = d + c // p
        if dist[npos][p] > tmp:
            dist[npos][p] = tmp
            heappush(hq, (tmp, npos, p))
print(min(dist[-1]))
0