結果

問題 No.2741 Balanced Choice
ユーザー kaeru82433413kaeru82433413
提出日時 2024-04-21 01:07:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 741 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-10-12 23:28:09
合計ジャッジ時間 6,547 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 498 ms
77,440 KB
testcase_01 AC 679 ms
77,696 KB
testcase_02 AC 741 ms
77,696 KB
testcase_03 AC 642 ms
77,568 KB
testcase_04 AC 733 ms
77,696 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 49 ms
59,008 KB
testcase_07 AC 270 ms
77,440 KB
testcase_08 AC 400 ms
77,312 KB
testcase_09 AC 282 ms
77,440 KB
testcase_10 AC 267 ms
77,952 KB
testcase_11 AC 407 ms
77,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, W, D = map(int, input().split())
twv = [map(int, input().split()) for _ in range(N)]
wv = [[], []]
for t, w, v in twv:
    wv[t].append((w, v))

dp = [[0] + [float("-inf")]*W for _ in range(2)]
for t in range(2):
    for w, v in wv[t]:
        update = dp[t].copy()
        for i in range(W+1-w):
            update[i+w] = max(update[i+w], dp[t][i] + v)
        dp[t] = update

ans = 0
for i in range(W+1):
    for j in range(W+1):
        if i+j <= W and abs(i-j) <= D:
            ans = max(ans, dp[0][i] + dp[1][j])
print(ans)
0