結果

問題 No.2741 Balanced Choice
ユーザー ntudantuda
提出日時 2024-04-27 00:18:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 563 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 78,144 KB
最終ジャッジ日時 2024-11-14 16:34:28
合計ジャッジ時間 5,936 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 501 ms
77,520 KB
testcase_01 AC 563 ms
77,668 KB
testcase_02 AC 554 ms
77,752 KB
testcase_03 AC 531 ms
77,608 KB
testcase_04 AC 525 ms
77,828 KB
testcase_05 AC 41 ms
54,496 KB
testcase_06 AC 46 ms
61,416 KB
testcase_07 AC 261 ms
78,144 KB
testcase_08 AC 417 ms
77,792 KB
testcase_09 AC 242 ms
77,620 KB
testcase_10 AC 289 ms
77,780 KB
testcase_11 AC 408 ms
77,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

dic = defaultdict(int)
N, W, D = map(int, input().split())
TWV = [list(map(int, input().split())) for _ in range(N)]
dp = [[-1] * (W + 1) for _ in range(2)]
dp[0][0] = 0
dp[1][0] = 0
for t, w, v in TWV:
    for i in reversed(range(W - w + 1)):
        if dp[t][i] >= 0:
            dp[t][i + w] = max(dp[t][i + w], dp[t][i] + v)
ans = 0
for i in range(W + 1):
    for j in range(W - i + 1):
        if abs(i - j) > D:
            continue
        if dp[0][i] != -1 and dp[1][j] != -1:
            ans = max(ans, dp[0][i] + dp[1][j])
print(ans)
0