結果

問題 No.1037 exhausted
ユーザー anagohirameanagohirame
提出日時 2020-04-24 22:24:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 590 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,768 KB
実行使用メモリ 108,660 KB
最終ジャッジ日時 2024-10-15 03:07:15
合計ジャッジ時間 3,733 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 WA -
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 37 ms
52,224 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 37 ms
52,364 KB
testcase_11 WA -
testcase_12 AC 190 ms
107,928 KB
testcase_13 AC 189 ms
108,060 KB
testcase_14 WA -
testcase_15 AC 189 ms
108,120 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 188 ms
108,284 KB
testcase_19 AC 189 ms
107,904 KB
testcase_20 AC 158 ms
107,740 KB
testcase_21 AC 154 ms
107,776 KB
testcase_22 AC 148 ms
107,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input():
	return sys.stdin.readline()[:-1]

n, v, l = map(int, input().split())
dp = [[10**15 for _ in range(v+1)] for _ in range(n+1)]
gas = [[0, 0, 10**15]] + [list(map(int, input().split())) for _ in range(n)]
dp[0][v] = 0
for i in range(1, n+1):
	for j in range(v - gas[i][0] + gas[i-1][0] + 1):
		dp[i][j] = dp[i-1][j + gas[i][0] - gas[i-1][0]]
	for j in range(v, gas[i][1]-1, -1):
		dp[i][j] = min(dp[i][j], dp[i][j - gas[i][1]] + gas[i][2])

ans = 10**15
for j in range(v, l - gas[n][0] - 1, -1):
	ans = min(ans, dp[n][j])
if ans > 10**14:
	print(-1)
else:
	print(ans)
0