結果

問題 No.2364 Knapsack Problem
ユーザー rlangevinrlangevin
提出日時 2023-06-30 21:25:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 573 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 64,456 KB
最終ジャッジ日時 2024-07-07 08:57:20
合計ジャッジ時間 1,681 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,588 KB
testcase_01 AC 30 ms
52,888 KB
testcase_02 AC 31 ms
52,980 KB
testcase_03 AC 30 ms
52,688 KB
testcase_04 AC 36 ms
59,692 KB
testcase_05 AC 38 ms
62,008 KB
testcase_06 AC 36 ms
60,360 KB
testcase_07 AC 43 ms
64,440 KB
testcase_08 AC 31 ms
53,496 KB
testcase_09 WA -
testcase_10 AC 41 ms
64,172 KB
testcase_11 AC 39 ms
62,864 KB
testcase_12 AC 43 ms
63,880 KB
testcase_13 AC 43 ms
64,344 KB
testcase_14 WA -
testcase_15 AC 45 ms
63,692 KB
testcase_16 AC 45 ms
63,764 KB
testcase_17 AC 44 ms
63,856 KB
testcase_18 AC 43 ms
64,336 KB
testcase_19 AC 44 ms
64,364 KB
testcase_20 AC 44 ms
64,456 KB
testcase_21 AC 44 ms
63,984 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 = A + C
B = B + D
ans = -10**18
for s in range(1 << (N + M)):
    wp, vp, wm, vm = 0, 0, 0, 0
    for i in range(N + M):
        if (s >> i) & 1:
            if i < N:
                wp += A[i]
                vp += B[i]
            else:
                wm += A[i]
                vm += B[i]
    if wm > wp or wp - wm > W:
        continue
    ans = max(ans, vp - vm)
    
print(ans)
    
0