結果
問題 | No.2730 Two Types Luggage |
ユーザー | 🦠みどりむし |
提出日時 | 2024-04-04 23:10:06 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 877 bytes |
コンパイル時間 | 1,505 ms |
コンパイル使用メモリ | 122,496 KB |
実行使用メモリ | 15,232 KB |
最終ジャッジ日時 | 2024-10-01 00:39:03 |
合計ジャッジ時間 | 8,173 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 16 ms
5,248 KB |
testcase_11 | AC | 357 ms
11,904 KB |
testcase_12 | AC | 533 ms
14,776 KB |
testcase_13 | AC | 285 ms
10,240 KB |
testcase_14 | AC | 363 ms
12,032 KB |
testcase_15 | AC | 160 ms
5,760 KB |
testcase_16 | AC | 132 ms
6,400 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <ranges> signed main() { int n, m, w; std::cin >> n >> m >> w; std::vector<int> a(n), b(m), c(m); for(auto& v : a) std::cin >> v; for(auto& v : b) std::cin >> v; for(auto& v : c) std::cin >> v; std::ranges::sort(a, [&](int x, int y) { return y < x; }); std::vector<long> cum_a(n + 1); for(const int i : std::views::iota(0, n)) cum_a[i + 1] = cum_a[i] + a[i]; long ans = 0; for(const int x : std::views::iota(0U, 1U << m)) { long ws = 0, vs = 0; for(const int i : std::views::iota(0, m)) { if((x >> i) & 1) continue; ws += b[i]; vs += c[i]; } if(ws > w) continue; long pro = ws + cum_a[std::min<long>(w - ws, n)]; if(ans < pro) ans = pro; } std::cout << ans << "\n"; }