結果

問題 No.2730 Two Types Luggage
ユーザー nu50218nu50218
提出日時 2024-04-19 21:40:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 1,249 bytes
コンパイル時間 2,555 ms
コンパイル使用メモリ 206,824 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-10-11 14:28:11
合計ジャッジ時間 9,197 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 5 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 8 ms
5,248 KB
testcase_11 AC 151 ms
8,960 KB
testcase_12 AC 269 ms
10,880 KB
testcase_13 AC 120 ms
7,808 KB
testcase_14 AC 150 ms
9,080 KB
testcase_15 AC 106 ms
5,248 KB
testcase_16 AC 55 ms
5,504 KB
testcase_17 AC 194 ms
10,496 KB
testcase_18 AC 178 ms
10,096 KB
testcase_19 AC 16 ms
5,248 KB
testcase_20 AC 70 ms
6,016 KB
testcase_21 AC 141 ms
8,576 KB
testcase_22 AC 200 ms
10,880 KB
testcase_23 AC 23 ms
5,248 KB
testcase_24 AC 82 ms
6,400 KB
testcase_25 AC 156 ms
8,948 KB
testcase_26 AC 42 ms
5,248 KB
testcase_27 AC 143 ms
8,704 KB
testcase_28 AC 76 ms
6,272 KB
testcase_29 AC 178 ms
10,112 KB
testcase_30 AC 86 ms
5,248 KB
testcase_31 AC 116 ms
7,744 KB
testcase_32 AC 104 ms
7,272 KB
testcase_33 AC 271 ms
10,952 KB
testcase_34 AC 270 ms
10,880 KB
testcase_35 AC 269 ms
11,008 KB
testcase_36 AC 271 ms
11,116 KB
testcase_37 AC 268 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifdef LOCAL
#include <local.hpp>
#else
#include <bits/stdc++.h>
#define debug(...) ((void)0)
#define postprocess(...) ((void)0)
#endif

using namespace std;
using ll = long long;
using ld = long double;

void solve([[maybe_unused]] int test) {
    ll N, M, W;
    cin >> N >> M >> W;

    vector<ll> A(N), B(M), C(M);
    for (auto&& x : A) {
        cin >> x;
    }
    for (auto&& x : B) {
        cin >> x;
    }
    for (auto&& x : C) {
        cin >> x;
    }
    sort(A.begin(), A.end(), greater<ll>());
    for (int i = 1; i < N; i++) {
        A[i] += A[i - 1];
    }

    ll ans = numeric_limits<ll>::lowest();

    for (int i = 0; i < (1 << M); i++) {
        ll value = 0;
        ll weight = 0;
        for (int j = 0; j < M; j++) {
            if (i & (1 << j)) {
                value += C[j];
                weight += B[j];
            }
        }

        if (weight > W) continue;

        ll rem = min(N, W - weight);
        if (rem) {
            value += A[rem - 1];
        }

        ans = max(ans, value);
    }

    cout << ans << endl;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int t = 1;
    // cin >> t;
    for (int i = 1; i <= t; i++) {
        solve(i);
    }

    postprocess();
}
0