結果

問題 No.2364 Knapsack Problem
ユーザー flippergoflippergo
提出日時 2024-10-25 13:39:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 531 bytes
コンパイル時間 510 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 63,144 KB
最終ジャッジ日時 2024-10-25 13:39:04
合計ジャッジ時間 3,032 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,684 KB
testcase_01 AC 38 ms
52,804 KB
testcase_02 AC 41 ms
52,560 KB
testcase_03 AC 38 ms
52,820 KB
testcase_04 AC 39 ms
52,548 KB
testcase_05 AC 45 ms
60,908 KB
testcase_06 AC 38 ms
52,480 KB
testcase_07 AC 49 ms
62,388 KB
testcase_08 AC 65 ms
52,536 KB
testcase_09 WA -
testcase_10 AC 46 ms
61,628 KB
testcase_11 AC 39 ms
53,884 KB
testcase_12 AC 48 ms
62,528 KB
testcase_13 AC 48 ms
62,072 KB
testcase_14 WA -
testcase_15 AC 49 ms
62,848 KB
testcase_16 AC 49 ms
62,412 KB
testcase_17 AC 48 ms
61,992 KB
testcase_18 AC 48 ms
61,744 KB
testcase_19 AC 48 ms
63,144 KB
testcase_20 AC 49 ms
62,956 KB
testcase_21 AC 49 ms
62,612 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()))
ans = 0
for i in range(1<<N):
    w = 0
    v = 0
    for k in range(N):
        if (i>>k)&1:
            w += A[k]
            v += B[k]
    for j in range(1<<M):
        w0 = w
        v0 = v
        for l in range(M):
            if (j>>l)&1:
                w0 -= C[l]
                v0 -= D[l]
        if w0<=W:
            ans = max(ans,v0)
print(ans)
0