結果

問題 No.2364 Knapsack Problem
ユーザー ryohei22ryohei22
提出日時 2023-06-30 22:25:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,148 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 80,512 KB
最終ジャッジ日時 2024-07-07 10:16:08
合計ジャッジ時間 2,549 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 36 ms
53,248 KB
testcase_02 AC 33 ms
53,760 KB
testcase_03 AC 34 ms
53,376 KB
testcase_04 AC 45 ms
64,768 KB
testcase_05 AC 40 ms
61,568 KB
testcase_06 AC 45 ms
64,512 KB
testcase_07 AC 75 ms
77,696 KB
testcase_08 AC 35 ms
53,760 KB
testcase_09 WA -
testcase_10 AC 81 ms
77,056 KB
testcase_11 AC 43 ms
61,824 KB
testcase_12 AC 93 ms
77,696 KB
testcase_13 AC 90 ms
77,568 KB
testcase_14 WA -
testcase_15 AC 107 ms
79,480 KB
testcase_16 AC 86 ms
77,824 KB
testcase_17 AC 86 ms
76,928 KB
testcase_18 AC 88 ms
78,464 KB
testcase_19 AC 114 ms
80,512 KB
testcase_20 AC 110 ms
79,580 KB
testcase_21 AC 88 ms
78,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


N, M, W = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
A += list(map(lambda x: -int(x), input().split()))
B += list(map(lambda x: -int(x), input().split()))

# bitDP
# dp[i][j][k]: i回各操作を行うかを決め、行った操作の集合がjであり、重さがkである時の価値の最大値
# MLEでたから、dp[i-1]とdp[i]のみを、oldとnewwとして保持してみる
old = defaultdict(lambda: defaultdict(int))
old[0][0] = 0
for _ in range(1, N+M+1):
    neww = defaultdict(lambda: defaultdict(int))
    for j in old:
        for k in old[j]:
            neww[j][k] = max(neww[j][k], old[j][k])
            for l in range(N+M):
                # l番目の操作をまだ行っていない かつ 操作を行っても重さが条件を満たす
                if not j >> l & 1 and 0 <= k + A[l] <= W:
                    neww[j|2**l][k+A[l]] \
                            = max(neww[j|2**l][k+A[l]], old[j][k] + B[l])
    old = neww

ans = -float('inf')
for j in old:
    for k in old[j]:
        ans = max(ans, old[j][k])
print(ans)
0