結果

問題 No.2730 Two Types Luggage
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-04-25 15:27:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 298 ms / 2,000 ms
コード長 857 bytes
コンパイル時間 2,389 ms
コンパイル使用メモリ 206,580 KB
実行使用メモリ 35,200 KB
最終ジャッジ日時 2024-11-08 02:30:03
合計ジャッジ時間 11,954 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 7 ms
5,248 KB
testcase_05 AC 3 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 171 ms
14,720 KB
testcase_12 AC 298 ms
34,944 KB
testcase_13 AC 125 ms
12,544 KB
testcase_14 AC 159 ms
14,848 KB
testcase_15 AC 122 ms
22,656 KB
testcase_16 AC 58 ms
7,424 KB
testcase_17 AC 204 ms
17,920 KB
testcase_18 AC 186 ms
16,768 KB
testcase_19 AC 17 ms
5,248 KB
testcase_20 AC 73 ms
8,704 KB
testcase_21 AC 149 ms
14,208 KB
testcase_22 AC 209 ms
18,560 KB
testcase_23 AC 25 ms
5,632 KB
testcase_24 AC 88 ms
9,728 KB
testcase_25 AC 161 ms
14,848 KB
testcase_26 AC 44 ms
6,272 KB
testcase_27 AC 149 ms
14,208 KB
testcase_28 AC 80 ms
9,216 KB
testcase_29 AC 186 ms
16,768 KB
testcase_30 AC 102 ms
20,992 KB
testcase_31 AC 123 ms
12,160 KB
testcase_32 AC 109 ms
11,264 KB
testcase_33 AC 296 ms
35,072 KB
testcase_34 AC 295 ms
35,200 KB
testcase_35 AC 294 ms
35,200 KB
testcase_36 AC 295 ms
35,200 KB
testcase_37 AC 298 ms
35,072 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