結果

問題 No.2730 Two Types Luggage
ユーザー cled0328cled0328
提出日時 2024-04-19 21:30:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 555 ms / 2,000 ms
コード長 629 bytes
コンパイル時間 2,125 ms
コンパイル使用メモリ 207,612 KB
実行使用メモリ 18,844 KB
最終ジャッジ日時 2024-10-11 14:06:58
合計ジャッジ時間 13,443 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 6 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 16 ms
5,248 KB
testcase_11 AC 358 ms
14,812 KB
testcase_12 AC 541 ms
18,644 KB
testcase_13 AC 292 ms
12,400 KB
testcase_14 AC 364 ms
14,968 KB
testcase_15 AC 158 ms
6,272 KB
testcase_16 AC 132 ms
7,424 KB
testcase_17 AC 458 ms
18,048 KB
testcase_18 AC 419 ms
16,804 KB
testcase_19 AC 38 ms
5,248 KB
testcase_20 AC 167 ms
8,576 KB
testcase_21 AC 337 ms
14,152 KB
testcase_22 AC 476 ms
18,560 KB
testcase_23 AC 48 ms
5,248 KB
testcase_24 AC 198 ms
9,568 KB
testcase_25 AC 369 ms
14,976 KB
testcase_26 AC 100 ms
6,528 KB
testcase_27 AC 341 ms
14,164 KB
testcase_28 AC 183 ms
9,216 KB
testcase_29 AC 422 ms
16,896 KB
testcase_30 AC 110 ms
5,248 KB
testcase_31 AC 279 ms
12,288 KB
testcase_32 AC 249 ms
11,260 KB
testcase_33 AC 545 ms
18,816 KB
testcase_34 AC 546 ms
18,784 KB
testcase_35 AC 546 ms
18,816 KB
testcase_36 AC 547 ms
18,816 KB
testcase_37 AC 555 ms
18,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    int n,m;cin>>n>>m;
    long long w;cin>>w;
    vector<long long> a(n),b(m),c(m);
    for(int i=0;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.begin(),a.end());
    vector<long long> s(n+1);
    for(int i=0;i<n;i++)s[i+1]=s[i]+a[n-1-i];
    long long ans=0;
    for(int i=0;i<(1<<m);i++){
        long long h=0,k=0;
        for(int j=0;j<m;j++)if(i&(1<<j)){
            h+=b[j];
            k+=c[j];
        }
        if(h>w)continue;
        ans=max(ans,k+s[min((long long)n,w-h)]);
    }
    cout<<ans<<"\n";
}
0