結果

問題 No.2364 Knapsack Problem
ユーザー 👑 rin204rin204
提出日時 2023-11-24 02:27:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 3,000 ms
コード長 656 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 66,048 KB
最終ジャッジ日時 2024-09-26 08:29:38
合計ジャッジ時間 2,292 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 46 ms
60,416 KB
testcase_05 AC 53 ms
62,208 KB
testcase_06 AC 45 ms
60,160 KB
testcase_07 AC 62 ms
65,920 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 62 ms
65,280 KB
testcase_10 AC 59 ms
65,024 KB
testcase_11 AC 54 ms
62,336 KB
testcase_12 AC 65 ms
65,920 KB
testcase_13 AC 63 ms
65,536 KB
testcase_14 AC 64 ms
65,792 KB
testcase_15 AC 65 ms
65,408 KB
testcase_16 AC 62 ms
66,048 KB
testcase_17 AC 63 ms
65,536 KB
testcase_18 AC 63 ms
66,048 KB
testcase_19 AC 64 ms
65,920 KB
testcase_20 AC 63 ms
65,792 KB
testcase_21 AC 64 ms
65,792 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()))
A += [-c for c in C]
B += [-d for d in D]

n += m
W_ = [-1] * (1 << n)
V_ = [-1] * (1 << n)
ok = [False] * (1 << n)
ok[0] = True
W_[0] = 0
V_[0] = 0
for bit in range(1 << n):
    for i in range(n):
        if bit >> i & 1:
            W_[bit] = W_[bit ^ (1 << i)] + A[i]
            V_[bit] = V_[bit ^ (1 << i)] + B[i]
            ok[bit] |= ok[bit ^ (1 << i)]

    if W_[bit] < 0 or W < W_[bit]:
        ok[bit] = False

ans = max([v for o, v in zip(ok, V_) if o])
print(ans)
0