結果

問題 No.2730 Two Types Luggage
ユーザー 矢澤式WINTER矢澤式WINTER
提出日時 2024-04-19 22:00:44
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,235 bytes
コンパイル時間 5,713 ms
コンパイル使用メモリ 338,596 KB
実行使用メモリ 19,180 KB
最終ジャッジ日時 2024-04-19 22:01:08
合計ジャッジ時間 16,851 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 2 ms
5,376 KB
testcase_06 RE -
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 156 ms
14,848 KB
testcase_12 AC 265 ms
18,636 KB
testcase_13 AC 148 ms
12,544 KB
testcase_14 AC 154 ms
14,848 KB
testcase_15 AC 105 ms
6,272 KB
testcase_16 AC 59 ms
7,552 KB
testcase_17 AC 202 ms
18,048 KB
testcase_18 RE -
testcase_19 AC 19 ms
5,376 KB
testcase_20 RE -
testcase_21 AC 147 ms
14,200 KB
testcase_22 RE -
testcase_23 AC 25 ms
5,376 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
//*/
#include <atcoder/all>
using namespace atcoder;
//*/
#define rep(i,n) for(int i=0;i<n;i++)
#define Rep(i,a,b) for(int i=a;i<b;i++)
#define ALL(x) (x).begin(),(x).end()
#define dbgv(x); for(auto now : x) cout << now << " "; cout << endl;
//using P = pair<int,int>;
using ll = long long;
using ull = unsigned long long;
//*/
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef vector<ll> vll;
typedef vector<int> vint;
random_device rnd;
mt19937 rng(rnd());


void solve(){
  int n,m; ll w,ans = 0; cin >> n >> m >> w;
  vll a(n); rep(i,n) cin >>a[i];
  sort(ALL(a));
  reverse(ALL(a));
  vll b(m),c(m); rep(i,m) cin >> b[i]; rep(i,m) cin >> c[i];
  vll s(n+1,0);
  rep(i,n) s[i+1] = s[i]+a[i];
  int m2 = 1<<m;
  rep(bit,m2){
    ll bs = 0,cs = 0;
    rep(i,m)if(bit>>i&1) bs+=b[i],cs+=c[i];
    if(w-bs >= 0)chmax(ans,s[min((int)(w-bs),n)]+cs);
  }
  cout << ans << endl;
}

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int t = 1; //cin >> t;
  rep(dirc,t) solve();
}
0