結果

問題 No.1449 新プロランド
ユーザー tktk_snsntktk_snsn
提出日時 2023-02-09 23:27:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 1,156 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 81,280 KB
最終ジャッジ日時 2024-06-06 11:12:22
合計ジャッジ時間 5,702 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
63,232 KB
testcase_01 AC 97 ms
76,544 KB
testcase_02 AC 135 ms
76,876 KB
testcase_03 AC 71 ms
69,632 KB
testcase_04 AC 102 ms
76,672 KB
testcase_05 AC 319 ms
80,768 KB
testcase_06 AC 243 ms
78,336 KB
testcase_07 AC 163 ms
78,208 KB
testcase_08 AC 266 ms
79,872 KB
testcase_09 AC 192 ms
77,440 KB
testcase_10 AC 179 ms
78,292 KB
testcase_11 AC 123 ms
77,824 KB
testcase_12 AC 250 ms
79,360 KB
testcase_13 AC 195 ms
77,696 KB
testcase_14 AC 117 ms
78,092 KB
testcase_15 AC 261 ms
79,264 KB
testcase_16 AC 202 ms
77,952 KB
testcase_17 AC 225 ms
78,688 KB
testcase_18 AC 40 ms
52,992 KB
testcase_19 AC 41 ms
53,632 KB
testcase_20 AC 40 ms
52,736 KB
testcase_21 AC 141 ms
77,824 KB
testcase_22 AC 115 ms
76,876 KB
testcase_23 AC 152 ms
78,180 KB
testcase_24 AC 170 ms
77,184 KB
testcase_25 AC 42 ms
52,992 KB
testcase_26 AC 75 ms
71,808 KB
testcase_27 AC 360 ms
81,280 KB
testcase_28 AC 240 ms
77,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
inf = 1 << 62


def main():
    N, M = map(int, input().split())
    G = [[] for _ in range(N + N)]
    for _ in range(M):
        a, b, c = map(int, input().split())
        a -= 1
        b -= 1
        G[a+N].append((b, c))
        G[b+N].append((a, c))

    T = list(map(int, input().split()))
    for i, t in enumerate(T):
        G[i].append((i+N, t))

    dist = [[inf] * 1001 for _ in range(N + N)]
    dist[0][0] = 0

    pq = [(0, 0, 0)]    # time, now, eat
    while pq:
        ds, s, P = heapq.heappop(pq)
        if dist[s][P] < ds:
            continue
        for t, dt in G[s]:
            if t == s + N and P + dt <= 1000:
                if dist[t][P + dt] > ds + dt:
                    dist[t][P + dt] = ds + dt
                    heapq.heappush(pq, (ds + dt, t, P + dt))
            else:
                if dist[t][P] > ds + dt // P:
                    dist[t][P] = ds + dt // P
                    heapq.heappush(pq, (ds + dt // P, t, P))

    ans = inf
    for i in range(1001):
        ans = min(ans, dist[N-1][i])
    print(ans)


main()
0