結果

問題 No.1449 新プロランド
ユーザー hiragnhiragn
提出日時 2022-12-14 19:17:25
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,000 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 78,372 KB
最終ジャッジ日時 2024-06-06 11:11:56
合計ジャッジ時間 4,334 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
55,552 KB
testcase_01 AC 76 ms
72,704 KB
testcase_02 AC 108 ms
76,760 KB
testcase_03 AC 47 ms
54,656 KB
testcase_04 AC 74 ms
70,016 KB
testcase_05 AC 174 ms
77,956 KB
testcase_06 AC 154 ms
77,736 KB
testcase_07 AC 120 ms
76,912 KB
testcase_08 AC 141 ms
77,244 KB
testcase_09 AC 147 ms
77,356 KB
testcase_10 AC 131 ms
77,244 KB
testcase_11 AC 120 ms
77,024 KB
testcase_12 AC 122 ms
77,276 KB
testcase_13 AC 152 ms
77,204 KB
testcase_14 AC 83 ms
71,936 KB
testcase_15 AC 163 ms
78,372 KB
testcase_16 AC 125 ms
77,192 KB
testcase_17 AC 139 ms
76,928 KB
testcase_18 AC 45 ms
54,144 KB
testcase_19 AC 49 ms
54,272 KB
testcase_20 AC 45 ms
54,272 KB
testcase_21 AC 95 ms
76,928 KB
testcase_22 AC 93 ms
76,672 KB
testcase_23 AC 130 ms
77,196 KB
testcase_24 AC 138 ms
76,796 KB
testcase_25 WA -
testcase_26 AC 68 ms
68,224 KB
testcase_27 AC 179 ms
78,088 KB
testcase_28 AC 171 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush
from collections import defaultdict


def main():
    INF = 10 ** 18
    n, m = map(int, input().split())
    g = defaultdict(list)
    for _ in range(m):
        a, b, c = map(int, input().split())
        a -= 1
        b -= 1
        g[a].append([b, c])
        g[b].append([a, c])
    t = list(map(int, input().split()))

    # ダイクストラ
    dist = [[INF] * 501 for _ in range(n)]
    dist[0][0] = 0
    q = [(0, 0, 0)]  # (今の時間, 今いる頂点,おむすびを食べた時間)
    while q:
        cur_t, cur_v, eat_t = heappop(q)
        if dist[cur_v][eat_t] < cur_t:
            continue
        cur_t += t[cur_v]
        eat_t = min(eat_t + t[cur_v], 500)
        for v, cost in g[cur_v]:
            if dist[v][eat_t] > cur_t + cost // eat_t:
                dist[v][eat_t] = cur_t + cost // eat_t
                heappush(q, (cur_t + cost // eat_t, v, eat_t))
    print(min(dist[- 1]))


if __name__ == "__main__":
    main()
0