結果
問題 |
No.2364 Knapsack Problem
|
ユーザー |
|
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 13 WA * 7 |
ソースコード
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)