結果
問題 | No.2364 Knapsack Problem |
ユーザー | yabit |
提出日時 | 2023-06-30 21:43:55 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,027 bytes |
コンパイル時間 | 177 ms |
コンパイル使用メモリ | 82,124 KB |
実行使用メモリ | 76,472 KB |
最終ジャッジ日時 | 2024-07-07 09:24:20 |
合計ジャッジ時間 | 1,968 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
52,804 KB |
testcase_01 | AC | 31 ms
53,000 KB |
testcase_02 | AC | 30 ms
52,756 KB |
testcase_03 | RE | - |
testcase_04 | AC | 34 ms
53,744 KB |
testcase_05 | AC | 32 ms
53,716 KB |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | AC | 32 ms
53,828 KB |
testcase_09 | AC | 54 ms
69,496 KB |
testcase_10 | AC | 57 ms
72,132 KB |
testcase_11 | RE | - |
testcase_12 | AC | 66 ms
76,076 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 66 ms
76,124 KB |
testcase_16 | AC | 66 ms
76,148 KB |
testcase_17 | WA | - |
testcase_18 | AC | 68 ms
76,204 KB |
testcase_19 | AC | 68 ms
76,116 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
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(N): 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)