結果

問題 No.2730 Two Types Luggage
ユーザー 沙耶花沙耶花
提出日時 2024-04-19 21:25:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 558 ms / 2,000 ms
コード長 766 bytes
コンパイル時間 4,490 ms
コンパイル使用メモリ 266,584 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-10-11 13:55:10
合計ジャッジ時間 16,121 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 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 17 ms
5,248 KB
testcase_11 AC 365 ms
14,848 KB
testcase_12 AC 550 ms
18,816 KB
testcase_13 AC 292 ms
12,544 KB
testcase_14 AC 368 ms
14,848 KB
testcase_15 AC 167 ms
6,272 KB
testcase_16 AC 134 ms
7,552 KB
testcase_17 AC 470 ms
18,048 KB
testcase_18 AC 429 ms
16,896 KB
testcase_19 AC 39 ms
5,248 KB
testcase_20 AC 171 ms
8,576 KB
testcase_21 AC 344 ms
14,336 KB
testcase_22 AC 483 ms
18,688 KB
testcase_23 AC 48 ms
5,248 KB
testcase_24 AC 201 ms
9,600 KB
testcase_25 AC 367 ms
14,976 KB
testcase_26 AC 100 ms
6,400 KB
testcase_27 AC 343 ms
14,208 KB
testcase_28 AC 185 ms
9,216 KB
testcase_29 AC 428 ms
16,896 KB
testcase_30 AC 115 ms
5,248 KB
testcase_31 AC 280 ms
12,288 KB
testcase_32 AC 253 ms
11,520 KB
testcase_33 AC 558 ms
18,816 KB
testcase_34 AC 557 ms
18,816 KB
testcase_35 AC 556 ms
18,944 KB
testcase_36 AC 555 ms
18,816 KB
testcase_37 AC 556 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001

int main(){
	
	long long N,M,W;
	cin>>N>>M>>W;
	vector<long long> a(N);
	rep(i,N)cin>>a[i];
	sort(a.rbegin(),a.rend());
	a.insert(a.begin(),0);
	rep(i,N)a[i+1] += a[i];
	vector<long long> c(M),b(M);
	rep(i,M){
		cin>>b[i];
	}
	rep(i,M)cin>>c[i];
	long long ans = 0;
	rep(i,1<<M){
		long long rem = W;
		long long vs = 0;
		rep(j,M){
			
			if((i>>j)&1){
				rem -= b[j];
				vs += c[j];
			}
		}
		
		if(rem<0)continue;
		rem = min(rem,N);
		vs += a[rem];
		ans = max(ans,vs);
		
	}
	cout<<ans<<endl;
	
	return 0;
}
0