結果

問題 No.2741 Balanced Choice
ユーザー titiatitia
提出日時 2024-12-10 04:45:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 622 ms / 2,000 ms
コード長 563 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-12-10 04:46:04
合計ジャッジ時間 5,045 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 273 ms
76,220 KB
testcase_01 AC 404 ms
76,160 KB
testcase_02 AC 491 ms
76,544 KB
testcase_03 AC 622 ms
75,904 KB
testcase_04 AC 608 ms
76,160 KB
testcase_05 AC 37 ms
51,456 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 168 ms
75,776 KB
testcase_08 AC 213 ms
73,984 KB
testcase_09 AC 164 ms
76,032 KB
testcase_10 AC 165 ms
76,544 KB
testcase_11 AC 195 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,W,D=map(int,input().split())

DP0=[-1<<60]*(W+1)
DP1=[-1<<60]*(W+1)
DP0[0]=0
DP1[0]=0

for i in range(N):
    t,w,v=map(int,input().split())

    if t==0:
        for j in range(W,-1,-1):
            if j+w<=W:
                DP0[j+w]=max(DP0[j+w],DP0[j]+v)
    else:
        for j in range(W,-1,-1):
            if j+w<=W:
                DP1[j+w]=max(DP1[j+w],DP1[j]+v)
    

ANS=0
for i in range(W+1):
    for j in range(i-D,i+D+1):
        if 0<=j<=W and 0<=i+j<=W:
            ANS=max(ANS,DP0[i]+DP1[j])

print(ANS)
0