結果

問題 No.2730 Two Types Luggage
ユーザー kekenxkekenx
提出日時 2024-05-26 16:38:09
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 579 ms / 2,000 ms
コード長 859 bytes
コンパイル時間 1,174 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 18,940 KB
最終ジャッジ日時 2024-12-20 20:22:26
合計ジャッジ時間 18,422 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 6 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 17 ms
6,820 KB
testcase_11 AC 374 ms
14,880 KB
testcase_12 AC 571 ms
18,652 KB
testcase_13 AC 300 ms
12,396 KB
testcase_14 AC 382 ms
14,968 KB
testcase_15 AC 168 ms
6,816 KB
testcase_16 AC 140 ms
7,424 KB
testcase_17 AC 478 ms
18,144 KB
testcase_18 AC 438 ms
16,812 KB
testcase_19 AC 40 ms
6,820 KB
testcase_20 AC 177 ms
8,576 KB
testcase_21 AC 358 ms
14,132 KB
testcase_22 AC 496 ms
18,532 KB
testcase_23 AC 50 ms
6,816 KB
testcase_24 AC 209 ms
9,580 KB
testcase_25 AC 384 ms
14,984 KB
testcase_26 AC 105 ms
6,820 KB
testcase_27 AC 354 ms
14,152 KB
testcase_28 AC 192 ms
9,344 KB
testcase_29 AC 439 ms
16,868 KB
testcase_30 AC 117 ms
6,820 KB
testcase_31 AC 292 ms
12,248 KB
testcase_32 AC 262 ms
11,424 KB
testcase_33 AC 573 ms
18,844 KB
testcase_34 AC 573 ms
18,824 KB
testcase_35 AC 572 ms
18,940 KB
testcase_36 AC 579 ms
18,800 KB
testcase_37 AC 575 ms
18,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cassert>
#include <vector>
#include <algorithm>

using namespace std;

int main() {
  int N, M; long long W; cin >> N >> M >> W;
  vector<long long> A(N), B(M), C(M);
  
  for (int i = 0; i < N; i++) {
    cin >> A[i];
  }

  sort(A.rbegin(), A.rend());
  vector<long long> S(N + 1, 0);
  for (int i = 0; i < N; i++) {
    S[i + 1] = S[i] + A[i];
  }
  
  for (long long &inner: B) cin >> inner;
  for (long long &inner: C) cin >> inner;
  
  long long ans = W > N ? S[N] : S[(int)W];
  for (int i = 0; i < 1 << M; i++) {
    long long w = 0;
    long long v = 0;
    for (int j = 0; j < M; j++) {
      if (i >> j & 1) {
	v += C[j];
	w += B[j];
      }
    }

    if (w > W) {
      continue;
    }

    long long r = W - w;
    v += r > N ? S[N] : S[(int)r];
    ans = max(ans, v);
  }
  cout << ans << endl;
  return 0;
}
  

0