結果

問題 No.2730 Two Types Luggage
ユーザー FplusFplusFFplusFplusF
提出日時 2024-04-05 11:06:10
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 1,076 bytes
コンパイル時間 3,169 ms
コンパイル使用メモリ 251,084 KB
実行使用メモリ 18,860 KB
最終ジャッジ日時 2024-10-01 01:01:15
合計ジャッジ時間 10,244 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 6 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
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 149 ms
14,712 KB
testcase_12 AC 268 ms
18,572 KB
testcase_13 AC 118 ms
12,448 KB
testcase_14 AC 150 ms
14,828 KB
testcase_15 AC 112 ms
6,820 KB
testcase_16 AC 55 ms
7,296 KB
testcase_17 AC 190 ms
18,076 KB
testcase_18 AC 174 ms
16,728 KB
testcase_19 AC 16 ms
6,816 KB
testcase_20 AC 70 ms
8,656 KB
testcase_21 AC 141 ms
14,140 KB
testcase_22 AC 195 ms
18,588 KB
testcase_23 AC 23 ms
6,820 KB
testcase_24 AC 83 ms
9,604 KB
testcase_25 AC 151 ms
14,984 KB
testcase_26 AC 42 ms
6,820 KB
testcase_27 AC 140 ms
14,168 KB
testcase_28 AC 77 ms
9,140 KB
testcase_29 AC 176 ms
16,928 KB
testcase_30 AC 92 ms
6,820 KB
testcase_31 AC 115 ms
12,292 KB
testcase_32 AC 89 ms
11,232 KB
testcase_33 AC 235 ms
18,692 KB
testcase_34 AC 243 ms
18,860 KB
testcase_35 AC 241 ms
18,824 KB
testcase_36 AC 256 ms
18,852 KB
testcase_37 AC 272 ms
18,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
using ld=long double;
const ll INF=(1ll<<60);
#define rep(i,n) for (ll i=0;i<(ll)(n);i++)
#define all(v) v.begin(),v.end()
template<class T> inline bool chmin(T &a,T b){
    if(a>b){
        a=b;
        return true;
    }
    return false;
}
template<class T> inline bool chmax(T &a,T b){
    if(a<b){
        a=b;
        return true;
    }
    return false;
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll n,m,sz;
    cin >> n >> m >> sz;
    vector<ll> a(n),b(m),c(m);
    rep(i,n) cin >> a[i];
    rep(i,m) cin >> b[i];
    rep(i,m) cin >> c[i];
    sort(all(a));
    reverse(all(a));
    vector<ll> sum(n+1,0);
    rep(i,n) sum[i+1]=sum[i]+a[i];
    ll ans=0;
    rep(i,1<<m){
        ll w=0,v=0;
        rep(j,m){
            if(i&1<<j){
                w+=b[j];
                v+=c[j];
            }
        }
        ll x=sz-w;
        if(x<0) continue;
        chmax(ans,v+sum[min(n,x)]);
    }
    cout << ans << '\n';
}
0