結果

問題 No.2730 Two Types Luggage
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-04-19 21:43:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 571 ms / 2,000 ms
コード長 964 bytes
コンパイル時間 2,617 ms
コンパイル使用メモリ 208,632 KB
実行使用メモリ 19,416 KB
最終ジャッジ日時 2024-10-11 14:35:17
合計ジャッジ時間 14,003 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 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 16 ms
5,248 KB
testcase_11 AC 385 ms
17,288 KB
testcase_12 AC 560 ms
19,172 KB
testcase_13 AC 299 ms
16,168 KB
testcase_14 AC 374 ms
17,288 KB
testcase_15 AC 160 ms
6,832 KB
testcase_16 AC 137 ms
9,616 KB
testcase_17 AC 479 ms
19,028 KB
testcase_18 AC 439 ms
18,280 KB
testcase_19 AC 39 ms
5,248 KB
testcase_20 AC 175 ms
10,212 KB
testcase_21 AC 353 ms
17,072 KB
testcase_22 AC 495 ms
19,156 KB
testcase_23 AC 49 ms
5,248 KB
testcase_24 AC 206 ms
10,568 KB
testcase_25 AC 381 ms
17,496 KB
testcase_26 AC 103 ms
7,056 KB
testcase_27 AC 357 ms
16,956 KB
testcase_28 AC 192 ms
10,356 KB
testcase_29 AC 442 ms
18,452 KB
testcase_30 AC 111 ms
5,248 KB
testcase_31 AC 293 ms
16,136 KB
testcase_32 AC 260 ms
11,432 KB
testcase_33 AC 568 ms
19,416 KB
testcase_34 AC 570 ms
19,416 KB
testcase_35 AC 569 ms
19,284 KB
testcase_36 AC 569 ms
19,288 KB
testcase_37 AC 571 ms
19,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int n, m;
    long long w;
    cin >> n >> m >> w;
    vector<long long> 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.rbegin(), a.rend());
    vector<long long> sum = {0LL};
    long long cur = 0LL;
    for (int i = 0; i < n; i++) {
        cur += a[i];
        sum.push_back(cur);
    }
    long long ans = 0LL;
    for (int bit = 0; bit < (1 << m); bit++) {
        long long wgt = 0LL, val = 0LL;
        for (int i = 0; i < m; i++) {
            if (bit & (1 << i)) {
                wgt += b[i];
                val += c[i];
            }
        }
        if (wgt > w) {
            continue;
        }
        long long res = min(w - wgt, (long long)n);
        ans = max(ans, val + sum[res]);
    }
    cout << ans << endl;
}
0