結果

問題 No.2364 Knapsack Problem
ユーザー lloyzlloyz
提出日時 2023-06-30 21:37:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 3,000 ms
コード長 898 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 141,704 KB
最終ジャッジ日時 2024-07-07 09:15:02
合計ジャッジ時間 3,419 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,428 KB
testcase_01 AC 31 ms
52,196 KB
testcase_02 AC 36 ms
60,480 KB
testcase_03 AC 34 ms
59,112 KB
testcase_04 AC 39 ms
62,368 KB
testcase_05 AC 42 ms
65,108 KB
testcase_06 AC 39 ms
63,476 KB
testcase_07 AC 77 ms
82,268 KB
testcase_08 AC 36 ms
59,332 KB
testcase_09 AC 72 ms
83,372 KB
testcase_10 AC 67 ms
78,292 KB
testcase_11 AC 45 ms
64,140 KB
testcase_12 AC 206 ms
141,704 KB
testcase_13 AC 199 ms
141,592 KB
testcase_14 AC 198 ms
141,700 KB
testcase_15 AC 199 ms
141,424 KB
testcase_16 AC 200 ms
141,608 KB
testcase_17 AC 207 ms
141,428 KB
testcase_18 AC 203 ms
141,496 KB
testcase_19 AC 202 ms
141,524 KB
testcase_20 AC 197 ms
141,656 KB
testcase_21 AC 199 ms
141,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, w = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = list(map(int, input().split()))
D = list(map(int, input().split()))

INF = 10**18
V = [[-INF for _ in range(w + 1)] for _ in range(1 << (n + m))]
V[0][0] = 0
ans = 0
for bit in range(1 << (n + m)):
    for ww in range(w + 1):
        if V[bit][ww] != -INF:
            for i in range(n + m):
                if (bit >> i) & 1:
                    continue
                nbit = bit | (1 << i)
                if i < n:
                    if ww + A[i] <= w:
                        V[nbit][ww + A[i]] = max(V[nbit][ww + A[i]], V[bit][ww] + B[i])
                else:
                    if ww - C[i - n] >= 0:
                        V[nbit][ww - C[i - n]] = max(V[nbit][ww - C[i - n]], V[bit][ww] - D[i - n])
    for ww in range(w + 1):
        ans = max(ans, V[bit][ww])
print(ans)
0