結果

問題 No.2730 Two Types Luggage
ユーザー Nzt3Nzt3
提出日時 2024-04-20 01:19:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 752 bytes
コンパイル時間 2,255 ms
コンパイル使用メモリ 209,308 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-10-11 20:08:21
合計ジャッジ時間 9,275 ms
ジャッジサーバーID
(参考情報)
judge3 / 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 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 3 ms
5,248 KB
testcase_10 AC 8 ms
5,248 KB
testcase_11 AC 152 ms
14,720 KB
testcase_12 AC 272 ms
18,688 KB
testcase_13 AC 121 ms
12,544 KB
testcase_14 AC 155 ms
14,720 KB
testcase_15 AC 111 ms
6,144 KB
testcase_16 AC 57 ms
7,424 KB
testcase_17 AC 194 ms
18,048 KB
testcase_18 AC 254 ms
16,640 KB
testcase_19 AC 17 ms
5,248 KB
testcase_20 AC 73 ms
8,448 KB
testcase_21 AC 148 ms
14,208 KB
testcase_22 AC 203 ms
18,432 KB
testcase_23 AC 23 ms
5,248 KB
testcase_24 AC 86 ms
9,600 KB
testcase_25 AC 157 ms
14,848 KB
testcase_26 AC 43 ms
6,272 KB
testcase_27 AC 145 ms
14,080 KB
testcase_28 AC 79 ms
9,216 KB
testcase_29 AC 181 ms
16,768 KB
testcase_30 AC 90 ms
5,248 KB
testcase_31 AC 120 ms
12,160 KB
testcase_32 AC 106 ms
11,264 KB
testcase_33 AC 274 ms
18,816 KB
testcase_34 AC 277 ms
18,688 KB
testcase_35 AC 283 ms
18,688 KB
testcase_36 AC 282 ms
18,816 KB
testcase_37 AC 275 ms
18,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
constexpr int MOD=998244353;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N,M;
  ll W;
  cin>>N>>M>>W;
  vector A(N,0ll);
  for(ll &i:A)cin>>i;
  sort(A.begin(),A.end());
  A.push_back(0);
  reverse(A.begin(),A.end());
  for(int i=1;i<=N;i++){
    A[i]+=A[i-1];
  }
  vector V(M,array<ll,2>());
  for(int i=0;i<M;i++)cin>>V[i][0];
  for(int i=0;i<M;i++)cin>>V[i][1];
  ll ans=0;
  for(int i=0;i<1<<M;i++){
    ll nowW=0,nowV=0;
    for(int j=0;j<M;j++){
      if(i>>j&1){
        nowW+=V[j][0];
        nowV+=V[j][1];
      }
    }
    if(nowW<=W){
      if(W-nowW>N) ans=max(ans,nowV+A[N]);
      else ans=max(ans,nowV+A[W-nowW]);
    }
  }
  cout<<ans<<'\n';
}
0