結果

問題 No.2730 Two Types Luggage
ユーザー 矢澤式WINTER矢澤式WINTER
提出日時 2024-04-19 22:04:46
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 1,307 bytes
コンパイル時間 5,731 ms
コンパイル使用メモリ 337,040 KB
実行使用メモリ 18,844 KB
最終ジャッジ日時 2024-04-19 22:05:17
合計ジャッジ時間 12,192 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 8 ms
5,376 KB
testcase_11 AC 157 ms
14,848 KB
testcase_12 AC 270 ms
18,688 KB
testcase_13 AC 121 ms
12,472 KB
testcase_14 AC 157 ms
14,848 KB
testcase_15 AC 100 ms
6,272 KB
testcase_16 AC 60 ms
7,552 KB
testcase_17 AC 201 ms
18,048 KB
testcase_18 AC 184 ms
16,896 KB
testcase_19 AC 18 ms
5,376 KB
testcase_20 AC 74 ms
8,704 KB
testcase_21 AC 153 ms
14,280 KB
testcase_22 AC 212 ms
18,672 KB
testcase_23 AC 24 ms
5,376 KB
testcase_24 AC 90 ms
9,600 KB
testcase_25 AC 158 ms
15,104 KB
testcase_26 AC 43 ms
6,400 KB
testcase_27 AC 145 ms
14,220 KB
testcase_28 AC 80 ms
9,344 KB
testcase_29 AC 189 ms
16,896 KB
testcase_30 AC 82 ms
5,376 KB
testcase_31 AC 123 ms
12,416 KB
testcase_32 AC 112 ms
11,420 KB
testcase_33 AC 271 ms
18,816 KB
testcase_34 AC 275 ms
18,844 KB
testcase_35 AC 272 ms
18,816 KB
testcase_36 AC 273 ms
18,816 KB
testcase_37 AC 268 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

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) continue;
    if(w-bs >= 0){
      ll tar = w-bs;
      if(tar > n) tar = n;
      chmax(ans,s[tar]+cs);
    }
  }
  cout << ans << endl;
}

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