結果

問題 No.2730 Two Types Luggage
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-04-19 21:26:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 1,078 bytes
コンパイル時間 2,273 ms
コンパイル使用メモリ 207,596 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-10-11 13:57:58
合計ジャッジ時間 9,268 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 8 ms
5,248 KB
testcase_11 AC 157 ms
14,848 KB
testcase_12 AC 273 ms
18,688 KB
testcase_13 AC 124 ms
12,672 KB
testcase_14 AC 156 ms
14,848 KB
testcase_15 AC 104 ms
6,144 KB
testcase_16 AC 58 ms
7,424 KB
testcase_17 AC 200 ms
18,048 KB
testcase_18 AC 184 ms
16,768 KB
testcase_19 AC 17 ms
5,248 KB
testcase_20 AC 73 ms
8,704 KB
testcase_21 AC 147 ms
14,080 KB
testcase_22 AC 206 ms
18,688 KB
testcase_23 AC 23 ms
5,248 KB
testcase_24 AC 88 ms
9,600 KB
testcase_25 AC 160 ms
14,848 KB
testcase_26 AC 44 ms
6,400 KB
testcase_27 AC 149 ms
14,208 KB
testcase_28 AC 80 ms
9,216 KB
testcase_29 AC 187 ms
16,768 KB
testcase_30 AC 85 ms
5,248 KB
testcase_31 AC 122 ms
12,160 KB
testcase_32 AC 109 ms
11,264 KB
testcase_33 AC 276 ms
18,816 KB
testcase_34 AC 278 ms
18,816 KB
testcase_35 AC 279 ms
18,688 KB
testcase_36 AC 275 ms
18,688 KB
testcase_37 AC 276 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}
int main() {
    fast_io();
    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> cum(n + 1);
    for (int i = 0; i < n; i++) {
        cum[i + 1] = cum[i] + a[i];
    }
    long long ans = 0;
    for (int st = 0; st < (1 << m); st++) {
        long long sum = 0, weight = 0;
        for (int i = 0; i < m; i++) {
            if (st & (1 << i)) {
                sum += c[i];
                weight += b[i];
            }
        }
        if (weight > w) {
            continue;
        }
        if (weight + n <= w) {
            ans = max(ans, sum + cum[n]);
        } else {
            ans = max(ans, sum + cum[w - weight]);
        }
    }
    cout << ans << endl;
}
0