結果

問題 No.2741 Balanced Choice
ユーザー Nzt3Nzt3
提出日時 2024-04-15 23:57:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 446 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-10-06 07:22:54
合計ジャッジ時間 4,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 278 ms
76,964 KB
testcase_01 AC 444 ms
76,676 KB
testcase_02 AC 431 ms
77,184 KB
testcase_03 AC 446 ms
76,724 KB
testcase_04 AC 413 ms
76,928 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 43 ms
59,008 KB
testcase_07 AC 189 ms
76,676 KB
testcase_08 AC 246 ms
76,720 KB
testcase_09 AC 177 ms
76,840 KB
testcase_10 AC 191 ms
77,008 KB
testcase_11 AC 256 ms
76,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, W, D = map(int, input().split())
A0 = []
A1 = []
for _ in range(N):
    t, w, v = map(int, input().split())
    if t == 0:
        A0.append((w, v))
    else:
        A1.append((w, v))

dp0 = [-10**8] * (W+1)
dp0[0] = 0
for a in A0:
    for j in range(W, a[0]-1, -1):
        if dp0[j] < dp0[j-a[0]]+a[1]:
            dp0[j] = dp0[j-a[0]]+a[1]

dp1 = [-10**8] * (W+1)
dp1[0] = 0
for a in A1:
    for j in range(W, a[0]-1, -1):
        if dp1[j] < dp1[j-a[0]]+a[1]:
            dp1[j] = dp1[j-a[0]]+a[1]

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