結果

問題 No.2730 Two Types Luggage
ユーザー kokoseikokosei
提出日時 2024-04-19 21:32:24
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 801 bytes
コンパイル時間 1,070 ms
コンパイル使用メモリ 89,600 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-10-11 14:10:49
合計ジャッジ時間 7,703 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 6 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 7 ms
5,248 KB
testcase_11 AC 149 ms
9,216 KB
testcase_12 AC 264 ms
11,136 KB
testcase_13 AC 118 ms
7,936 KB
testcase_14 AC 149 ms
9,344 KB
testcase_15 AC 105 ms
5,248 KB
testcase_16 AC 55 ms
5,504 KB
testcase_17 AC 192 ms
10,752 KB
testcase_18 AC 176 ms
10,240 KB
testcase_19 AC 16 ms
5,248 KB
testcase_20 AC 69 ms
6,016 KB
testcase_21 AC 140 ms
8,832 KB
testcase_22 AC 199 ms
11,136 KB
testcase_23 AC 22 ms
5,248 KB
testcase_24 AC 82 ms
6,656 KB
testcase_25 AC 151 ms
9,216 KB
testcase_26 AC 41 ms
5,248 KB
testcase_27 AC 142 ms
8,832 KB
testcase_28 AC 76 ms
6,528 KB
testcase_29 AC 175 ms
10,240 KB
testcase_30 AC 85 ms
5,248 KB
testcase_31 AC 115 ms
7,936 KB
testcase_32 AC 103 ms
7,424 KB
testcase_33 AC 268 ms
11,136 KB
testcase_34 AC 269 ms
11,264 KB
testcase_35 AC 269 ms
11,136 KB
testcase_36 AC 268 ms
11,264 KB
testcase_37 AC 268 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;
using ll = long long;

int N, M;
ll W;
ll A[1010101];
ll B[20], C[20];
int main(void){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    cin >> N >> M >> W;
    for(int i = 1;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, A + N + 1);
    reverse(A + 1, A + N + 1);
    for(int i = 0;i < N;i++){
        A[i + 1] += A[i];
    }
    ll ans = 0;
    for(int i = 0;i < (1 << M);i++){
        ll v = 0, w = 0;
        for(int j = 0;j < M;j++){
            if(i >> j & 1)continue;
            w += B[j];
            v += C[j];
        }
        if(w > W)continue;
        ans = max(ans, v + A[min((ll)N, W - w)]);
    }
    cout << ans << endl;
    return 0;
}
0