結果

問題 No.2364 Knapsack Problem
ユーザー ニックネームニックネーム
提出日時 2023-06-30 23:21:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 3,000 ms
コード長 500 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 68,736 KB
最終ジャッジ日時 2024-07-07 11:15:28
合計ジャッジ時間 1,783 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,984 KB
testcase_01 AC 35 ms
53,948 KB
testcase_02 AC 33 ms
52,252 KB
testcase_03 AC 32 ms
52,156 KB
testcase_04 AC 33 ms
52,696 KB
testcase_05 AC 32 ms
53,236 KB
testcase_06 AC 33 ms
52,956 KB
testcase_07 AC 52 ms
66,588 KB
testcase_08 AC 33 ms
52,132 KB
testcase_09 AC 49 ms
66,688 KB
testcase_10 AC 52 ms
67,496 KB
testcase_11 AC 33 ms
52,368 KB
testcase_12 AC 56 ms
67,868 KB
testcase_13 AC 52 ms
66,840 KB
testcase_14 AC 54 ms
66,800 KB
testcase_15 AC 52 ms
67,052 KB
testcase_16 AC 53 ms
68,392 KB
testcase_17 AC 53 ms
67,172 KB
testcase_18 AC 51 ms
67,868 KB
testcase_19 AC 56 ms
67,816 KB
testcase_20 AC 53 ms
68,736 KB
testcase_21 AC 56 ms
67,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k = 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()))
ac = a+[-w for w in c]
bd = b+[-v for v in d]
v = [-10**9]*(1<<n+m); v[0] = 0
for i in range(1<<n+m):
    if v[i]==-10**9: continue
    s = 0
    for j in range(n+m):
        if i>>j&1: s += ac[j]
    for j in range(n+m):
        if i>>j&1: continue
        if 0<=s+ac[j]<=k: v[i|1<<j] = max(v[i|1<<j],v[i]+bd[j])
print(max(v))
0