結果

問題 No.2741 Balanced Choice
ユーザー detteiuudetteiuu
提出日時 2024-09-08 15:05:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,103 ms / 2,000 ms
コード長 808 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 273,984 KB
最終ジャッジ日時 2024-09-08 15:05:45
合計ジャッジ時間 10,844 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 832 ms
273,456 KB
testcase_01 AC 907 ms
273,892 KB
testcase_02 AC 1,001 ms
273,636 KB
testcase_03 AC 1,103 ms
273,716 KB
testcase_04 AC 1,044 ms
273,984 KB
testcase_05 AC 43 ms
60,328 KB
testcase_06 AC 42 ms
59,940 KB
testcase_07 AC 776 ms
273,744 KB
testcase_08 AC 803 ms
273,600 KB
testcase_09 AC 793 ms
273,392 KB
testcase_10 AC 777 ms
273,704 KB
testcase_11 AC 794 ms
273,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, W, D = map(int, input().split())
stone = [list(map(int, input().split())) for _ in range(N)]

def DP(A):
    dp = [[-1]*5001 for _ in range(len(A)+1)]
    dp[0][0] = 0
    for i in range(len(A)):
        w, v = A[i]
        for j in range(5001):
            if dp[i][j] == -1:
                continue
            dp[i+1][j] = max(dp[i+1][j], dp[i][j])
            if j+w <= 5000:
                dp[i+1][j+w] = max(dp[i+1][j+w], dp[i][j]+v)
    return dp[-1]

zero = []
one = []
for t, w, v in stone:
    if t == 0:
        zero.append((w, v))
    else:
        one.append((w, v))

zero = DP(zero)
one = DP(one)

ans = 0
for i in range(5001):
    for j in range(i-D, i+D+1):
        if 0 <= j <= 5000 and i+j <= W and zero[i] != -1 and one[j] != -1:
            ans = max(ans, zero[i]+one[j])

print(ans)
0