結果

問題 No.2364 Knapsack Problem
ユーザー tassei903tassei903
提出日時 2023-06-30 21:29:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 3,000 ms
コード長 556 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 67,088 KB
最終ジャッジ日時 2024-07-07 09:02:08
合計ジャッジ時間 1,876 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
53,140 KB
testcase_01 AC 31 ms
52,384 KB
testcase_02 AC 30 ms
52,400 KB
testcase_03 AC 30 ms
53,004 KB
testcase_04 AC 30 ms
52,416 KB
testcase_05 AC 31 ms
53,420 KB
testcase_06 AC 30 ms
52,752 KB
testcase_07 AC 44 ms
65,280 KB
testcase_08 AC 31 ms
52,332 KB
testcase_09 AC 41 ms
63,080 KB
testcase_10 AC 43 ms
64,304 KB
testcase_11 AC 32 ms
52,684 KB
testcase_12 AC 48 ms
65,732 KB
testcase_13 AC 43 ms
65,016 KB
testcase_14 AC 43 ms
63,736 KB
testcase_15 AC 43 ms
64,888 KB
testcase_16 AC 43 ms
64,976 KB
testcase_17 AC 42 ms
63,292 KB
testcase_18 AC 43 ms
64,100 KB
testcase_19 AC 44 ms
65,456 KB
testcase_20 AC 48 ms
67,088 KB
testcase_21 AC 48 ms
65,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, W = map(int, input().split())
N = n + m
a = list(map(int, input().split()))
b = list(map(int, input().split()))
c = list(map(int, input().split()))
d = list(map(int, input().split()))

e = a + [-i for i in c]
f = b + [-i for i in d]

dp = [None for i in range(1<<N)]
dp[0] = (0, 0)
ans = 0
for i in range(1<<N):
    if dp[i] == None:
        continue
    w, v = dp[i]
    ans = max(ans, v)
    for j in range(N):
        if i >> j & 1:
            continue
        if 0 <= w + e[j] <= W:
            dp[i | (1<<j)] = (w + e[j], v + f[j])

print(ans)
0