結果

問題 No.2730 Two Types Luggage
ユーザー ooaiuooaiu
提出日時 2024-08-10 18:14:38
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 562 ms / 2,000 ms
コード長 1,001 bytes
コンパイル時間 3,917 ms
コンパイル使用メモリ 252,424 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-08-10 18:14:59
合計ジャッジ時間 19,518 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 6 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 15 ms
5,376 KB
testcase_11 AC 360 ms
14,976 KB
testcase_12 AC 534 ms
18,816 KB
testcase_13 AC 314 ms
12,416 KB
testcase_14 AC 348 ms
14,848 KB
testcase_15 AC 163 ms
6,272 KB
testcase_16 AC 124 ms
7,424 KB
testcase_17 AC 458 ms
18,048 KB
testcase_18 AC 406 ms
17,024 KB
testcase_19 AC 37 ms
5,376 KB
testcase_20 AC 170 ms
8,576 KB
testcase_21 AC 307 ms
14,208 KB
testcase_22 AC 436 ms
18,560 KB
testcase_23 AC 45 ms
5,376 KB
testcase_24 AC 202 ms
9,600 KB
testcase_25 AC 346 ms
14,976 KB
testcase_26 AC 96 ms
6,400 KB
testcase_27 AC 319 ms
14,208 KB
testcase_28 AC 168 ms
9,216 KB
testcase_29 AC 416 ms
16,896 KB
testcase_30 AC 106 ms
5,376 KB
testcase_31 AC 307 ms
12,288 KB
testcase_32 AC 253 ms
11,264 KB
testcase_33 AC 555 ms
18,944 KB
testcase_34 AC 542 ms
18,816 KB
testcase_35 AC 562 ms
18,816 KB
testcase_36 AC 520 ms
18,816 KB
testcase_37 AC 546 ms
18,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

#ifdef LOCAL
#include "../algo/debug.hpp"
#else
#define debug(...) void(0)
#endif

void solve() {
    ll n, m, w; cin >> n >> m >> w;
    vector<ll> a(n), b(m), c(m);
    for(int i = 0; i < n; i++) cin >> a[i];
    for(int i = 0; i < m; i++) cin >> b[i];
    for(int i = 0; i < m; i++) cin >> c[i];
    sort(a.begin(), a.end(), greater<>{});
    vector<ll> pref(n + 1, 0);
    for(int i = 0; i < n; i++) pref[i + 1] = pref[i] + a[i];
    ll ans = 0;
    for(int bit = 0; bit < (1 << m); bit++) {
        ll nowb{}, nowc{};
        for(int i = 0; i < m; i++) {
            if(bit & (1 << i)) {
                nowb += b[i];
                nowc += c[i];
            }
        }
        if(nowb <= w) {
            ll rt = w - nowb;
            ans = max(ans, nowc + pref[min(rt, n)]);
        }
    }
    cout << ans << endl;
}

int main() {
    int T = 1;
    // cin >> T;
    while (T--) {
        solve();
    }
    return 0;
}
0