結果

問題 No.2364 Knapsack Problem
ユーザー yabityabit
提出日時 2023-06-30 21:45:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,027 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 76,504 KB
最終ジャッジ日時 2024-07-07 09:25:45
合計ジャッジ時間 2,187 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,084 KB
testcase_01 AC 36 ms
53,116 KB
testcase_02 AC 36 ms
52,684 KB
testcase_03 AC 36 ms
53,020 KB
testcase_04 AC 37 ms
53,596 KB
testcase_05 AC 50 ms
62,668 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 38 ms
52,480 KB
testcase_09 AC 68 ms
72,096 KB
testcase_10 AC 65 ms
72,684 KB
testcase_11 AC 47 ms
62,956 KB
testcase_12 AC 71 ms
75,948 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 74 ms
76,164 KB
testcase_16 AC 74 ms
76,052 KB
testcase_17 WA -
testcase_18 AC 75 ms
76,084 KB
testcase_19 AC 74 ms
76,004 KB
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product

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 pr1 in product((0, 1), repeat=N):
    for pr2 in product((0, 1), repeat=M):
        Wc = []
        wi, vi = 0, 0
        for i in range(N):
            if pr1[i]:
                Wc.append(A[i])
                vi += B[i]
        for i in range(M):
            if pr2[i]:
                Wc.append(-C[i])
                vi -= D[i]
        Wc.sort()
        l, r = 0, len(Wc) - 1
        while l <= r:
            # print(l, r, Wc)
            if 0 <= Wc[l] + wi <= W:
                wi += Wc[l]
                l += 1
                continue
            elif 0 <= Wc[r] + wi <= W:
                wi += Wc[r]
                r -= 1
                continue
            else:
                break
        if l > r:
            ans = max(ans, vi)
        # print(pr1, pr2, l == r, ans, Wc)
print(ans)
0