結果

問題 No.2364 Knapsack Problem
ユーザー yabityabit
提出日時 2023-06-30 23:34:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 3,000 ms
コード長 613 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 69,484 KB
最終ジャッジ日時 2024-07-07 11:26:43
合計ジャッジ時間 2,038 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,228 KB
testcase_01 AC 33 ms
52,612 KB
testcase_02 AC 32 ms
53,648 KB
testcase_03 AC 32 ms
53,256 KB
testcase_04 AC 35 ms
52,148 KB
testcase_05 AC 33 ms
52,076 KB
testcase_06 AC 32 ms
52,284 KB
testcase_07 AC 51 ms
67,192 KB
testcase_08 AC 33 ms
53,240 KB
testcase_09 AC 51 ms
66,872 KB
testcase_10 AC 55 ms
67,728 KB
testcase_11 AC 34 ms
53,436 KB
testcase_12 AC 52 ms
68,028 KB
testcase_13 AC 52 ms
66,924 KB
testcase_14 AC 52 ms
67,436 KB
testcase_15 AC 54 ms
68,192 KB
testcase_16 AC 55 ms
69,324 KB
testcase_17 AC 55 ms
69,484 KB
testcase_18 AC 54 ms
67,164 KB
testcase_19 AC 55 ms
68,848 KB
testcase_20 AC 57 ms
67,536 KB
testcase_21 AC 55 ms
67,904 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()))
Weight = A + [-c for c in C]
Value = B + [-d for d in D]
nm = N + M
dp = [-(10**9)] * 2**nm
dp[0] = 0
ans = 0
for i in range(2**nm):
    if dp[i] == -(10**9):
        continue
    w = 0
    for j in range(nm):
        if i >> j & 1:
            w += Weight[j]
    for j in range(nm):
        if i >> j & 1:
            continue
        if 0 <= w+Weight[j] <= W:
            dp[i|1<<j] = max(dp[i|1<<j],dp[i]+Value[j])

print(max(dp))
0