結果
問題 | No.2364 Knapsack Problem |
ユーザー | KoseT |
提出日時 | 2023-06-30 22:03:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,190 bytes |
コンパイル時間 | 1,897 ms |
コンパイル使用メモリ | 208,392 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-07 09:50:24 |
合計ジャッジ時間 | 2,575 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 3 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 5 ms
6,940 KB |
testcase_13 | AC | 5 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | AC | 5 ms
6,940 KB |
testcase_16 | AC | 5 ms
6,944 KB |
testcase_17 | AC | 5 ms
6,940 KB |
testcase_18 | AC | 5 ms
6,948 KB |
testcase_19 | AC | 6 ms
6,940 KB |
testcase_20 | AC | 5 ms
6,940 KB |
testcase_21 | AC | 5 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int n, m, w; cin >> n >> m >> w; vector<pair<int, long long>> merch(n); for (int i=0;i<n;++i) cin >> merch[i].first; for (int i=0;i<n;++i) cin >> merch[i].second; vector<pair<int, long long>> magic(m); for (int i=0;i<m;++i) cin >> magic[i].first; for (int i=0;i<m;++i) cin >> magic[i].second; long long ans {}; for (int i=1;i<(1<<(n+m));++i) { pair<int, long long> ans_tmp {}; vector<int> weights; for (int j=0;j<n;++j) { if (i & (1<<j)) { weights.push_back(merch[j].first); ans_tmp.second += merch[j].second; } } for (int j=n;j<n+m;++j) { if (i & (1<<j)) { weights.push_back(-magic[j-n].first); ans_tmp.second -= magic[j-n].second; } } sort(weights.begin(), weights.end()); if (weights[0] < -w) continue; if (w < weights[weights.size()-1]) continue; ans_tmp.first = accumulate(weights.begin(), weights.end(), 0ll); //cout << ans_tmp.first << ' ' << ans_tmp.second << '\n'; if (ans_tmp.first <= w) ans = max(ans, ans_tmp.second); } cout << ans << '\n'; }