結果

問題 No.2730 Two Types Luggage
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-04-25 15:27:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 337 ms / 2,000 ms
コード長 857 bytes
コンパイル時間 2,572 ms
コンパイル使用メモリ 202,704 KB
実行使用メモリ 35,352 KB
最終ジャッジ日時 2024-04-25 15:27:36
合計ジャッジ時間 13,274 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 8 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 8 ms
6,948 KB
testcase_11 AC 167 ms
14,928 KB
testcase_12 AC 304 ms
34,944 KB
testcase_13 AC 128 ms
12,456 KB
testcase_14 AC 155 ms
14,984 KB
testcase_15 AC 135 ms
22,740 KB
testcase_16 AC 58 ms
7,424 KB
testcase_17 AC 218 ms
18,020 KB
testcase_18 AC 214 ms
16,812 KB
testcase_19 AC 18 ms
6,940 KB
testcase_20 AC 77 ms
8,492 KB
testcase_21 AC 150 ms
14,172 KB
testcase_22 AC 214 ms
18,680 KB
testcase_23 AC 27 ms
6,940 KB
testcase_24 AC 93 ms
9,836 KB
testcase_25 AC 164 ms
15,072 KB
testcase_26 AC 46 ms
6,944 KB
testcase_27 AC 150 ms
14,248 KB
testcase_28 AC 81 ms
9,308 KB
testcase_29 AC 197 ms
16,872 KB
testcase_30 AC 115 ms
21,112 KB
testcase_31 AC 124 ms
12,144 KB
testcase_32 AC 111 ms
11,460 KB
testcase_33 AC 309 ms
35,240 KB
testcase_34 AC 311 ms
35,352 KB
testcase_35 AC 337 ms
35,256 KB
testcase_36 AC 308 ms
35,312 KB
testcase_37 AC 315 ms
35,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

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

    ll N, M, W, K, L, ans=0;
    cin >> N >> M >> W;
    K = 1<<M;
    vector<ll> A(N), B(M), C(M), SA(N+1), SB(K), SC(K);
    for (int i=0; i<N; i++) cin >> A[i];
    sort(A.begin(), A.end(), greater<ll>());
    for (int i=0; i<N; i++){
        SA[i+1] = SA[i]+A[i];
    }
    for (int i=0; i<M; i++) cin >> B[i];
    for (int j=0; j<M; j++) cin >> C[j];

    for (int i=0; i<K; i++){
        for (int j=0; j<M; j++){
            if (i>>j & 1){
                SB[i] += B[j];
                SC[i] += C[j];
            }
        }
    }

    for (int i=0; i<K; i++){
        if (W<SB[i]) continue;
        L = min(W-SB[i], N);
        ans = max(ans, SC[i]+SA[L]);
    }

    cout << ans << endl;

    return 0;
}
0