結果

問題 No.2730 Two Types Luggage
ユーザー t98slidert98slider
提出日時 2024-05-05 09:28:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 2,193 ms
コンパイル使用メモリ 207,288 KB
実行使用メモリ 18,860 KB
最終ジャッジ日時 2024-05-05 09:28:20
合計ジャッジ時間 12,855 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 6 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 137 ms
14,848 KB
testcase_12 AC 248 ms
18,700 KB
testcase_13 AC 119 ms
12,652 KB
testcase_14 AC 148 ms
14,720 KB
testcase_15 AC 106 ms
6,272 KB
testcase_16 AC 55 ms
7,296 KB
testcase_17 AC 192 ms
18,036 KB
testcase_18 AC 175 ms
17,024 KB
testcase_19 AC 16 ms
5,376 KB
testcase_20 AC 71 ms
8,704 KB
testcase_21 AC 140 ms
14,080 KB
testcase_22 AC 197 ms
18,580 KB
testcase_23 AC 23 ms
5,376 KB
testcase_24 AC 84 ms
9,472 KB
testcase_25 AC 152 ms
14,848 KB
testcase_26 AC 42 ms
6,528 KB
testcase_27 AC 141 ms
14,180 KB
testcase_28 AC 77 ms
9,216 KB
testcase_29 AC 169 ms
16,928 KB
testcase_30 AC 81 ms
5,376 KB
testcase_31 AC 111 ms
12,288 KB
testcase_32 AC 96 ms
11,288 KB
testcase_33 AC 254 ms
18,816 KB
testcase_34 AC 257 ms
18,816 KB
testcase_35 AC 275 ms
18,816 KB
testcase_36 AC 261 ms
18,860 KB
testcase_37 AC 250 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    ll n, m, w, ans = 0;
    cin >> n >> m >> w;
    vector<ll> a(n), b(m), c(m), s(n + 1);
    for(auto &&v : a) cin >> v;
    for(auto &&v : b) cin >> v;
    for(auto &&v : c) cin >> v;
    sort(a.rbegin(), a.rend());
    for(int i = 0; i < n; i++){
        s[i + 1] = s[i] + a[i];
    }
    for(int S = 0; S < (1 << m); S++){
        ll bs = 0, cs = 0;
        for(int i = 0; i < m; i++){
            if(S >> i & 1){
                bs += b[i];
                cs += c[i];
            }
        }
        if(bs > w) continue;
        ans = max(ans, s[min(n, w - bs)] + cs);
    }
    cout << ans << '\n';
}
0