結果

問題 No.2730 Two Types Luggage
ユーザー ManjushriMitraManjushriMitra
提出日時 2024-12-29 16:11:18
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 1,370 bytes
コンパイル時間 3,435 ms
コンパイル使用メモリ 251,636 KB
実行使用メモリ 18,924 KB
最終ジャッジ日時 2024-12-29 16:11:28
合計ジャッジ時間 9,898 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 3 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 4 ms
6,820 KB
testcase_10 AC 8 ms
6,816 KB
testcase_11 AC 153 ms
14,748 KB
testcase_12 AC 263 ms
18,512 KB
testcase_13 AC 167 ms
12,436 KB
testcase_14 AC 159 ms
14,888 KB
testcase_15 AC 108 ms
6,820 KB
testcase_16 AC 58 ms
7,296 KB
testcase_17 AC 204 ms
18,100 KB
testcase_18 AC 182 ms
16,728 KB
testcase_19 AC 16 ms
6,820 KB
testcase_20 AC 73 ms
8,688 KB
testcase_21 AC 142 ms
14,208 KB
testcase_22 AC 204 ms
18,492 KB
testcase_23 AC 23 ms
6,816 KB
testcase_24 AC 83 ms
9,676 KB
testcase_25 AC 161 ms
15,044 KB
testcase_26 AC 44 ms
6,816 KB
testcase_27 AC 148 ms
14,152 KB
testcase_28 AC 78 ms
9,156 KB
testcase_29 AC 179 ms
16,764 KB
testcase_30 AC 86 ms
6,820 KB
testcase_31 AC 116 ms
12,268 KB
testcase_32 AC 105 ms
11,292 KB
testcase_33 AC 278 ms
18,924 KB
testcase_34 AC 271 ms
18,720 KB
testcase_35 AC 269 ms
18,924 KB
testcase_36 AC 273 ms
18,916 KB
testcase_37 AC 270 ms
18,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,m,n) for(int i=m; i<int(n); ++i)
#define repll(i,m,n) for(ll i=m; i<ll(n); ++i)
#define all(a) (a).begin(), (a).end()
#define rall(a) (a).rbegin(), (a).rend()
#define fi first
#define se second

template<typename T> bool chmin(T& a, T b){ if(a > b){a = b; return true;} return false; }
template<typename T> bool chmax(T& a, T b){ if(a < b){a = b; return true;} return false; }

template<typename T> T gcd(T a, T b){ return a % b ? gcd(b, a % b) : b; }
template<typename T> T lcm(T a, T b){ return a / gcd(a, b) * b; }

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

    int N, M;
    ll W;
    cin >> N >> M >> W;

    vector<ll> A(N), B(M), C(M);
    rep(i, 0, N) cin >> A[i];
    rep(i, 0, M) cin >> B[i];
    rep(i, 0, M) cin >> C[i];

    sort(all(A), greater<ll>());
    vector<ll> sum_A(N+1, 0LL);
    rep(i, 0, N) sum_A[i+1] = sum_A[i] + A[i];

    ll max_value = -1LL;
    for(int bit = 0; bit < (1 << M); ++bit){
        ll value = 0LL, weight = 0LL;
        rep(i, 0, M){
            if(bit & (1 << i)){
                value += C[i];
                weight += B[i];
            }
        }
        if(weight > W) continue;
        value += sum_A[min(ll(N), W - weight)];
        chmax(max_value, value);
    }
    cout << max_value << endl;

    return 0;
}
0