結果

問題 No.2364 Knapsack Problem
ユーザー ニックネームニックネーム
提出日時 2023-06-30 23:20:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 557 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 69,756 KB
最終ジャッジ日時 2024-07-07 11:14:47
合計ジャッジ時間 1,805 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,896 KB
testcase_01 AC 31 ms
52,760 KB
testcase_02 AC 30 ms
52,208 KB
testcase_03 AC 31 ms
52,608 KB
testcase_04 AC 30 ms
52,612 KB
testcase_05 AC 29 ms
53,296 KB
testcase_06 AC 30 ms
52,924 KB
testcase_07 AC 49 ms
67,628 KB
testcase_08 AC 30 ms
52,372 KB
testcase_09 WA -
testcase_10 AC 49 ms
67,952 KB
testcase_11 AC 34 ms
53,296 KB
testcase_12 AC 50 ms
67,864 KB
testcase_13 AC 48 ms
67,908 KB
testcase_14 WA -
testcase_15 AC 50 ms
67,936 KB
testcase_16 AC 51 ms
67,908 KB
testcase_17 AC 50 ms
67,944 KB
testcase_18 AC 48 ms
67,080 KB
testcase_19 AC 53 ms
69,756 KB
testcase_20 AC 51 ms
68,172 KB
testcase_21 AC 49 ms
67,996 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]
f = [False]*(1<<n+m); f[0] = True; v = [0]*(1<<n+m)
for i in range(1<<n+m):
    if not f[i]: 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:
            f[i|1<<j] = True
            v[i|1<<j] = max(v[i|1<<j],v[i]+bd[j])
print(max(v))
0