結果

問題 No.2730 Two Types Luggage
ユーザー pia019pia019
提出日時 2024-04-19 22:01:58
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 562 ms / 2,000 ms
コード長 1,074 bytes
コンパイル時間 2,929 ms
コンパイル使用メモリ 252,192 KB
実行使用メモリ 18,848 KB
最終ジャッジ日時 2024-10-11 15:11:13
合計ジャッジ時間 14,544 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 6 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 16 ms
6,820 KB
testcase_11 AC 360 ms
14,824 KB
testcase_12 AC 482 ms
18,736 KB
testcase_13 AC 289 ms
12,516 KB
testcase_14 AC 359 ms
14,800 KB
testcase_15 AC 98 ms
6,400 KB
testcase_16 AC 133 ms
7,424 KB
testcase_17 AC 464 ms
18,072 KB
testcase_18 AC 424 ms
16,896 KB
testcase_19 AC 38 ms
5,248 KB
testcase_20 AC 169 ms
8,576 KB
testcase_21 AC 338 ms
14,196 KB
testcase_22 AC 479 ms
18,528 KB
testcase_23 AC 48 ms
5,248 KB
testcase_24 AC 199 ms
9,600 KB
testcase_25 AC 364 ms
14,976 KB
testcase_26 AC 100 ms
6,528 KB
testcase_27 AC 345 ms
14,208 KB
testcase_28 AC 184 ms
9,216 KB
testcase_29 AC 424 ms
16,864 KB
testcase_30 AC 118 ms
5,248 KB
testcase_31 AC 285 ms
12,288 KB
testcase_32 AC 252 ms
11,336 KB
testcase_33 AC 560 ms
18,848 KB
testcase_34 AC 556 ms
18,816 KB
testcase_35 AC 562 ms
18,816 KB
testcase_36 AC 559 ms
18,816 KB
testcase_37 AC 556 ms
18,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int INF = 1<<30;
const int MOD = 998244353;
//const long long INF = 1LL<<60;
using graph = vector<vector<int>>;
using ll = long long;


int main(){
    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<ll>());
    vector<ll> acc_a(n+1);
    for (int i=1; i < n+1; i++) acc_a[i] = acc_a[i-1] + a[i-1];

    
    ll ans = 0LL;
    for (int i=0; i < (1<<m); i++){
        ll weight = 0;
        ll value = 0;
        bool flag = true;
        for (int j=0; j < m; j++){
            if (i & (1<<j)){
                weight += b[j];
                value += c[j];
            }
            if (weight > w){
                flag = false;
                break;
            }
        }
        
        if (flag){
            ll rem = w - weight;
            ans = max(ans, value + acc_a[min(n, rem)]);
        }
    }
    cout << ans << endl;
}
0