結果

問題 No.2730 Two Types Luggage
ユーザー soldraysoldray
提出日時 2024-04-20 00:01:31
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 544 ms / 2,000 ms
コード長 906 bytes
コンパイル時間 2,482 ms
コンパイル使用メモリ 165,616 KB
実行使用メモリ 18,888 KB
最終ジャッジ日時 2024-10-11 18:57:30
合計ジャッジ時間 13,895 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 17 ms
5,248 KB
testcase_11 AC 375 ms
14,720 KB
testcase_12 AC 518 ms
18,584 KB
testcase_13 AC 297 ms
12,416 KB
testcase_14 AC 374 ms
14,680 KB
testcase_15 AC 120 ms
6,272 KB
testcase_16 AC 136 ms
7,296 KB
testcase_17 AC 475 ms
17,920 KB
testcase_18 AC 438 ms
16,768 KB
testcase_19 AC 39 ms
5,248 KB
testcase_20 AC 174 ms
8,664 KB
testcase_21 AC 352 ms
14,040 KB
testcase_22 AC 496 ms
18,548 KB
testcase_23 AC 47 ms
5,248 KB
testcase_24 AC 205 ms
9,472 KB
testcase_25 AC 378 ms
14,976 KB
testcase_26 AC 103 ms
6,400 KB
testcase_27 AC 353 ms
14,080 KB
testcase_28 AC 191 ms
9,080 KB
testcase_29 AC 440 ms
16,896 KB
testcase_30 AC 69 ms
5,248 KB
testcase_31 AC 290 ms
12,288 KB
testcase_32 AC 260 ms
11,256 KB
testcase_33 AC 525 ms
18,888 KB
testcase_34 AC 528 ms
18,712 KB
testcase_35 AC 526 ms
18,688 KB
testcase_36 AC 544 ms
18,688 KB
testcase_37 AC 519 ms
18,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using i64 = long long;

#define yn(pope) (pope ? "Yes" : "No")

#define rep(i, n, m) for (int i = (n); i < (m); i++)
#define rrep(i, n, m) for (int i = (n); i > m; i--)

#define IINF (1 << 30)
#define INF (1ll << 60)

#define all(v) v.begin(), v.end()

int main() {
  int N, M;
  i64 W; cin >> N >> M >> W;

  vector<i64> A(N), B(M), C(M);

  for (i64 &x : A) { cin >> x; }
  for (i64 &x : B) { cin >> x; }
  for (i64 &x : C) { cin >> x; }

  sort(all(A));
  reverse(all(A));

  vector<i64> sum(N + 1);

  rep(i, 1, N + 1) {
    sum[i] = sum[i - 1] + A[i - 1];
  }

  i64 ans = 0;

  rep(i, 0, (1 << M)) {
    i64 w = 0;
    i64 v = 0;

    rep(j, 0, M) {
      w += B[j] * ((i >> j) & 1);
      v += C[j] * ((i >> j) & 1);
    }

    v += sum[max(0ll, min((i64)N, W - w))];

    if (w <= W) { ans = max(ans, v); }
  }

  cout << ans << endl;

  return 0;
}
0