結果

問題 No.2730 Two Types Luggage
ユーザー rotti_coderrotti_coder
提出日時 2024-04-19 21:36:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 559 ms / 2,000 ms
コード長 714 bytes
コンパイル時間 919 ms
コンパイル使用メモリ 83,288 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-10-11 14:19:49
合計ジャッジ時間 12,234 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 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 16 ms
5,248 KB
testcase_11 AC 358 ms
9,088 KB
testcase_12 AC 554 ms
10,880 KB
testcase_13 AC 285 ms
7,808 KB
testcase_14 AC 360 ms
9,088 KB
testcase_15 AC 164 ms
5,248 KB
testcase_16 AC 131 ms
5,376 KB
testcase_17 AC 461 ms
10,752 KB
testcase_18 AC 423 ms
9,984 KB
testcase_19 AC 37 ms
5,248 KB
testcase_20 AC 167 ms
5,888 KB
testcase_21 AC 338 ms
8,704 KB
testcase_22 AC 476 ms
10,880 KB
testcase_23 AC 48 ms
5,248 KB
testcase_24 AC 198 ms
6,400 KB
testcase_25 AC 367 ms
9,088 KB
testcase_26 AC 99 ms
5,248 KB
testcase_27 AC 338 ms
8,832 KB
testcase_28 AC 183 ms
6,144 KB
testcase_29 AC 424 ms
10,112 KB
testcase_30 AC 118 ms
5,248 KB
testcase_31 AC 283 ms
7,808 KB
testcase_32 AC 251 ms
7,296 KB
testcase_33 AC 558 ms
11,008 KB
testcase_34 AC 557 ms
11,008 KB
testcase_35 AC 559 ms
11,008 KB
testcase_36 AC 558 ms
11,008 KB
testcase_37 AC 558 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<bitset>
#include<algorithm>
using namespace std;
int main()
{
  long long n,m,w;
  cin >> n >> m >> 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.rbegin(),A.rend());
  for(int i=1;i<n;i++)A[i]+=A[i-1];
  long long ans=0;
  for(int tmp=0;tmp<(1<<m);tmp++){
    bitset<20>s(tmp);
    long long cnt=0;
    long long count=0;
    for(int i=0;i<m;i++)if(s[i]){
	cnt+=B[i];
	count+=C[i];
      }
    if(cnt>w)continue;
    if(cnt<w)count+=A[min(w-cnt-1,(long long)A.size()-1)];
    ans=max(ans,count);
  }
  cout << max(ans,A[min(w-1,(long long)A.size()-1)]) << endl;
}
0