結果

問題 No.1449 新プロランド
ユーザー H3PO4H3PO4
提出日時 2023-06-17 20:31:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 474 ms / 2,000 ms
コード長 1,238 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 39,936 KB
最終ジャッジ日時 2024-06-06 11:12:43
合計ジャッジ時間 6,244 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
11,264 KB
testcase_01 AC 44 ms
12,032 KB
testcase_02 AC 79 ms
14,592 KB
testcase_03 AC 41 ms
11,904 KB
testcase_04 AC 43 ms
11,904 KB
testcase_05 AC 474 ms
39,936 KB
testcase_06 AC 280 ms
28,288 KB
testcase_07 AC 171 ms
23,168 KB
testcase_08 AC 336 ms
33,024 KB
testcase_09 AC 248 ms
24,832 KB
testcase_10 AC 210 ms
26,880 KB
testcase_11 AC 155 ms
24,320 KB
testcase_12 AC 309 ms
31,360 KB
testcase_13 AC 211 ms
22,528 KB
testcase_14 AC 136 ms
23,552 KB
testcase_15 AC 310 ms
30,464 KB
testcase_16 AC 216 ms
24,576 KB
testcase_17 AC 246 ms
25,984 KB
testcase_18 AC 38 ms
11,776 KB
testcase_19 AC 72 ms
17,920 KB
testcase_20 AC 32 ms
11,136 KB
testcase_21 AC 169 ms
23,552 KB
testcase_22 AC 56 ms
12,800 KB
testcase_23 AC 256 ms
30,592 KB
testcase_24 AC 157 ms
19,328 KB
testcase_25 AC 62 ms
13,952 KB
testcase_26 AC 38 ms
11,520 KB
testcase_27 AC 452 ms
39,168 KB
testcase_28 AC 336 ms
29,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from heapq import heappop, heappush

input = sys.stdin.buffer.readline


def dijkstra(N, G, s):
    INF = 10 ** 9
    dist = [INF] * N
    que = [(0, s)]
    dist[s] = 0
    while que:
        c, v = heappop(que)
        if dist[v] < c:
            continue
        for t, cost in G[v]:
            if dist[v] + cost < dist[t]:
                dist[t] = dist[v] + cost
                heappush(que, (dist[t], t))
    return dist


N, M = map(int, input().split())
MAX_TIME = 1000
G = [[] for _ in range(N * (MAX_TIME + 1))]


def pair2int(num, time):
    return min(time, MAX_TIME) * N + num


def add_edge(s_num, t_num, s_time, eat_time, length):
    t_time = s_time + eat_time
    if not t_time:
        return
    G[pair2int(s_num, s_time)].append((pair2int(t_num, t_time), eat_time + length // t_time))


edges = []
for _ in range(M):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    edges.append((a, b, c))
T = tuple(map(int, input().split()))
for a, b, c in edges:
    for time in range(MAX_TIME + 1):
        add_edge(a, b, time, T[a], c)
        add_edge(b, a, time, T[b], c)

dist = dijkstra(len(G), G, pair2int(0, 0))
ans = min(dist[pair2int(N - 1, time)] for time in range(MAX_TIME + 1))
print(ans)
0