結果

問題 No.1037 exhausted
ユーザー tktk_snsntktk_snsn
提出日時 2020-06-05 18:35:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 614 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 18,208 KB
最終ジャッジ日時 2024-05-09 15:49:48
合計ジャッジ時間 4,463 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
17,824 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
inf = 10 ** 18

N, V, L = map(int, input().split())
station = [tuple(map(int, input().split())) for _ in range(N)]
station.append((L, 0, 0))

dp = [inf] * (V + 1)
dp[V] = 0

pos = 0
for x, v, w in station:
    dist = x - pos
    newDP = [inf] * (V + 1)
    for i in range(dist, V + 1):
        # 補給しない
        gas = i - dist
        newDP[gas] = min(newDP[gas], dp[i])
        # 補給する
        gas = min(V, i - dist + v)
        newDP[gas] = min(newDP[gas], dp[i] + w)
    dp = newDP
    pos = x

ans = min(dp)
if ans >= inf:
    print(-1)
else:
    print(ans)
0