結果

問題 No.2730 Two Types Luggage
ユーザー GOTKAKOGOTKAKO
提出日時 2024-04-19 21:26:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 718 bytes
コンパイル時間 2,314 ms
コンパイル使用メモリ 208,212 KB
実行使用メモリ 11,048 KB
最終ジャッジ日時 2024-10-11 13:56:22
合計ジャッジ時間 9,021 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 7 ms
5,248 KB
testcase_11 AC 152 ms
9,088 KB
testcase_12 AC 279 ms
10,880 KB
testcase_13 AC 118 ms
7,680 KB
testcase_14 AC 151 ms
9,088 KB
testcase_15 AC 122 ms
5,248 KB
testcase_16 AC 55 ms
5,248 KB
testcase_17 AC 192 ms
10,496 KB
testcase_18 AC 176 ms
9,856 KB
testcase_19 AC 16 ms
5,248 KB
testcase_20 AC 70 ms
5,760 KB
testcase_21 AC 142 ms
8,704 KB
testcase_22 AC 202 ms
10,880 KB
testcase_23 AC 23 ms
5,248 KB
testcase_24 AC 81 ms
6,272 KB
testcase_25 AC 148 ms
8,960 KB
testcase_26 AC 41 ms
5,248 KB
testcase_27 AC 141 ms
8,704 KB
testcase_28 AC 75 ms
6,144 KB
testcase_29 AC 174 ms
9,984 KB
testcase_30 AC 101 ms
5,248 KB
testcase_31 AC 114 ms
7,648 KB
testcase_32 AC 102 ms
7,240 KB
testcase_33 AC 283 ms
10,892 KB
testcase_34 AC 283 ms
10,932 KB
testcase_35 AC 280 ms
11,008 KB
testcase_36 AC 283 ms
11,048 KB
testcase_37 AC 284 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

    long long N,M,W; cin >> N >> M >> W;
    int m2 = 1<<M;
    vector<long long> A(N),B(M),C(M);
    for(auto &a : A) cin >> a;
    for(auto &a : B) cin >> a;
    for(auto &a : C) cin >> a;
    sort(A.rbegin(),A.rend());
    for(int i=1; i<N; i++) A.at(i) += A.at(i-1);

    long long answer = 0;
    for(int t=0; t<m2; t++){
        long long v = 0,w = 0;
        for(int i=0; i<M; i++) if(t&(1<<i)) w += B.at(i),v += C.at(i);
        if(w > W) continue;
        long long left = min(N,W-w);
        if(left) v += A.at(left-1);
        answer = max(answer,v);
    }
    cout << answer << endl;
}
0