結果

問題 No.2730 Two Types Luggage
ユーザー 沙耶花
提出日時 2024-04-19 21:25:30
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 605 ms / 2,000 ms
コード長 766 bytes
コンパイル時間 4,495 ms
コンパイル使用メモリ 255,744 KB
最終ジャッジ日時 2025-02-21 03:38:26
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

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