結果

問題 No.1449 新プロランド
ユーザー gorugo30gorugo30
提出日時 2021-05-08 17:37:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 742 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 80,668 KB
最終ジャッジ日時 2024-12-24 02:08:18
合計ジャッジ時間 5,035 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
62,500 KB
testcase_01 AC 88 ms
76,720 KB
testcase_02 AC 106 ms
76,808 KB
testcase_03 AC 55 ms
65,512 KB
testcase_04 AC 86 ms
76,572 KB
testcase_05 AC 263 ms
80,392 KB
testcase_06 AC 218 ms
79,276 KB
testcase_07 AC 138 ms
77,536 KB
testcase_08 AC 227 ms
80,072 KB
testcase_09 AC 177 ms
78,304 KB
testcase_10 AC 180 ms
78,216 KB
testcase_11 AC 122 ms
78,096 KB
testcase_12 AC 205 ms
79,300 KB
testcase_13 AC 154 ms
77,560 KB
testcase_14 AC 100 ms
77,604 KB
testcase_15 AC 225 ms
79,800 KB
testcase_16 AC 177 ms
78,856 KB
testcase_17 AC 206 ms
79,088 KB
testcase_18 AC 40 ms
53,416 KB
testcase_19 AC 40 ms
53,612 KB
testcase_20 AC 36 ms
52,680 KB
testcase_21 AC 144 ms
78,156 KB
testcase_22 AC 119 ms
76,620 KB
testcase_23 AC 144 ms
77,548 KB
testcase_24 AC 156 ms
77,440 KB
testcase_25 AC 39 ms
53,340 KB
testcase_26 AC 65 ms
70,816 KB
testcase_27 AC 230 ms
80,668 KB
testcase_28 AC 190 ms
78,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dist = [[-1] * 1002 for i in range(N)]
dist[0][0] = 0
import heapq
pq = [(0, 0, 0)]
while len(pq):
    d, v, p = heapq.heappop(pq)
    if d > dist[v][p]:
        continue
    for nv, c in adj[v]:
        np = min(1001, T[v] + p)
        nd = d + T[v] + c // np
        if dist[nv][np] == -1 or dist[nv][np] > nd:
            dist[nv][np] = nd
            heapq.heappush(pq, (nd, nv, np))
ans = 10 ** 10
for i in range(1002):
    if dist[-1][i] == -1:
        continue
    ans = min(ans, dist[-1][i])
print(ans)
0