結果

問題 No.2730 Two Types Luggage
ユーザー ManjushriMitraManjushriMitra
提出日時 2024-12-29 16:07:10
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 1,371 bytes
コンパイル時間 3,395 ms
コンパイル使用メモリ 252,580 KB
実行使用メモリ 18,936 KB
最終ジャッジ日時 2024-12-29 16:07:31
合計ジャッジ時間 19,699 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,820 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 3 ms
6,820 KB
testcase_06 RE -
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 8 ms
6,816 KB
testcase_11 AC 147 ms
14,824 KB
testcase_12 AC 269 ms
18,648 KB
testcase_13 AC 125 ms
12,484 KB
testcase_14 AC 158 ms
14,796 KB
testcase_15 AC 107 ms
6,816 KB
testcase_16 AC 55 ms
7,296 KB
testcase_17 AC 192 ms
18,144 KB
testcase_18 RE -
testcase_19 AC 17 ms
6,816 KB
testcase_20 RE -
testcase_21 AC 149 ms
13,992 KB
testcase_22 RE -
testcase_23 AC 24 ms
6,820 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
権限があれば一括ダウンロードができます

ソースコード

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(N, int(W - weight))];
        chmax(max_value, value);
    }
    cout << max_value << endl;

    return 0;
}
0