結果

問題 No.2730 Two Types Luggage
ユーザー haihamabossuhaihamabossu
提出日時 2024-04-19 21:34:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 857 bytes
コンパイル時間 2,230 ms
コンパイル使用メモリ 206,836 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-10-11 14:15:28
合計ジャッジ時間 9,324 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 7 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 8 ms
5,248 KB
testcase_11 AC 154 ms
14,824 KB
testcase_12 AC 296 ms
18,632 KB
testcase_13 AC 126 ms
12,336 KB
testcase_14 AC 158 ms
14,836 KB
testcase_15 AC 127 ms
6,272 KB
testcase_16 AC 58 ms
7,296 KB
testcase_17 AC 203 ms
17,920 KB
testcase_18 AC 186 ms
16,876 KB
testcase_19 AC 16 ms
5,248 KB
testcase_20 AC 73 ms
8,576 KB
testcase_21 AC 143 ms
14,208 KB
testcase_22 AC 200 ms
18,560 KB
testcase_23 AC 24 ms
5,248 KB
testcase_24 AC 86 ms
9,472 KB
testcase_25 AC 154 ms
14,976 KB
testcase_26 AC 43 ms
6,400 KB
testcase_27 AC 143 ms
14,208 KB
testcase_28 AC 79 ms
9,160 KB
testcase_29 AC 180 ms
16,852 KB
testcase_30 AC 105 ms
5,248 KB
testcase_31 AC 119 ms
12,288 KB
testcase_32 AC 106 ms
11,348 KB
testcase_33 AC 291 ms
18,688 KB
testcase_34 AC 293 ms
18,808 KB
testcase_35 AC 293 ms
18,808 KB
testcase_36 AC 292 ms
18,724 KB
testcase_37 AC 290 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)

void solve() {
  ll n, m, w;
  cin >> n >> m >> w;
  vector<ll> a(n);
  rep(i, n) cin >> a[i];
  vector<ll> b(m);
  rep(i, m) cin >> b[i];
  vector<ll> c(m);
  rep(i, m) cin >> c[i];
  sort(a.begin(), a.end());
  reverse(a.begin(), a.end());
  vector<ll> sum(n + 1);
  rep(i, n) sum[i + 1] = sum[i] + a[i];
  ll ans = 0;
  rep(S, 1 << m) {
    ll now_b = 0, now_c = 0;
    rep(mi, m) if ((S >> mi) & 1) {
      now_b += b[mi];
      now_c += c[mi];
    }
    if (now_b <= w) {
      now_c += sum[min(n, w - now_b)];
      ans = max(ans, now_c);
    }
  }
  cout << ans << '\n';
}

int main() {
  std::cin.tie(nullptr);
  std::ios_base::sync_with_stdio(false);
  int T = 1;
  for (int t = 0; t < T; t++) {
    solve();
  }
  return 0;
}
0