結果

問題 No.1037 exhausted
ユーザー 双六双六
提出日時 2020-08-03 00:36:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 853 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 135,808 KB
最終ジャッジ日時 2024-07-20 01:34:51
合計ジャッジ時間 5,105 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,504 KB
testcase_01 AC 47 ms
53,504 KB
testcase_02 AC 49 ms
53,888 KB
testcase_03 AC 46 ms
53,632 KB
testcase_04 AC 46 ms
53,760 KB
testcase_05 AC 46 ms
53,760 KB
testcase_06 AC 46 ms
53,632 KB
testcase_07 AC 48 ms
53,888 KB
testcase_08 AC 47 ms
54,016 KB
testcase_09 AC 47 ms
53,888 KB
testcase_10 AC 47 ms
53,504 KB
testcase_11 AC 47 ms
53,632 KB
testcase_12 AC 317 ms
129,024 KB
testcase_13 AC 315 ms
130,304 KB
testcase_14 AC 319 ms
134,272 KB
testcase_15 AC 275 ms
120,832 KB
testcase_16 AC 326 ms
122,240 KB
testcase_17 AC 306 ms
135,808 KB
testcase_18 AC 317 ms
127,616 KB
testcase_19 AC 321 ms
127,104 KB
testcase_20 AC 272 ms
108,672 KB
testcase_21 AC 187 ms
107,904 KB
testcase_22 AC 207 ms
108,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N, V, L = getlist()
	DP = [[INF] * (V + 1) for i in range(N + 2)]
	DP[0][V] = 0
	xnow = 0
	for i in range(1, N + 1):
		x, v, w = getlist()
		for j in range(V, -1, -1):
			if j + (x - xnow) <= V:
				DP[i][j] = min(DP[i][j], DP[i - 1][j + (x - xnow)])
			DP[i][min(V, j + v)] = min(DP[i][min(V, j + v)], DP[i][j] + w)
			# if j >= v:
			# 	DP[i][j] = min(DP[i][j], DP[i][j - v] + w)
		xnow = x

	for j in range(V + 1):
		if j + (L - xnow) <= V:
			DP[N + 1][j] = min(DP[N + 1][j], DP[N][j + (L - xnow)])

	# print(DP)

	ans = min(DP[-1])
	if ans == INF:
		print(-1)
	else:
		print(ans)

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