結果

問題 No.2730 Two Types Luggage
ユーザー a01sa01toa01sa01to
提出日時 2024-04-22 00:20:47
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,886 ms / 2,000 ms
コード長 888 bytes
コンパイル時間 3,333 ms
コンパイル使用メモリ 262,220 KB
実行使用メモリ 84,480 KB
最終ジャッジ日時 2024-10-13 22:53:10
合計ジャッジ時間 25,565 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 12 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 4 ms
5,248 KB
testcase_10 AC 16 ms
5,248 KB
testcase_11 AC 368 ms
14,848 KB
testcase_12 AC 905 ms
23,424 KB
testcase_13 AC 293 ms
12,416 KB
testcase_14 AC 367 ms
14,848 KB
testcase_15 AC 528 ms
11,520 KB
testcase_16 AC 137 ms
7,936 KB
testcase_17 AC 471 ms
18,048 KB
testcase_18 AC 433 ms
16,896 KB
testcase_19 AC 39 ms
5,248 KB
testcase_20 AC 170 ms
8,576 KB
testcase_21 AC 346 ms
14,208 KB
testcase_22 AC 490 ms
18,560 KB
testcase_23 AC 79 ms
8,704 KB
testcase_24 AC 210 ms
10,624 KB
testcase_25 AC 373 ms
15,104 KB
testcase_26 AC 101 ms
6,400 KB
testcase_27 AC 346 ms
14,336 KB
testcase_28 AC 187 ms
9,216 KB
testcase_29 AC 437 ms
16,896 KB
testcase_30 AC 1,357 ms
70,016 KB
testcase_31 AC 285 ms
12,288 KB
testcase_32 AC 256 ms
11,392 KB
testcase_33 AC 1,847 ms
84,480 KB
testcase_34 AC 1,886 ms
84,352 KB
testcase_35 AC 1,832 ms
84,352 KB
testcase_36 AC 1,846 ms
84,480 KB
testcase_37 AC 1,775 ms
84,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
  #include "settings/debug.cpp"
  #define _GLIBCXX_DEBUG
#else
  #define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;

int main() {
  ll n, m, w;
  cin >> n >> m >> w;
  vector<ll> a(n), b(m), c(m);
  rep(i, n) cin >> a[i];
  rep(i, m) cin >> b[i];
  rep(i, m) cin >> c[i];
  map<ll, ll> mp;
  rep(bit, 1 << m) {
    ll wei = 0, val = 0;
    rep(i, m) {
      if (bit & (1 << i)) {
        wei += b[i];
        val += c[i];
      }
    }
    mp[wei] = max(mp[wei], val);
  }
  sort(a.rbegin(), a.rend());
  vector<ll> sum(n + 1, 0);
  rep(i, n) sum[i + 1] = sum[i] + a[i];
  ll ans = sum[min(n, w)];
  for (auto [wei, val] : mp) {
    if (wei > w) continue;
    ans = max(ans, sum[min(n, w - wei)] + val);
  }
  cout << ans << endl;
  return 0;
}
0