結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 6 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 18 ms
6,940 KB
testcase_11 AC 327 ms
14,932 KB
testcase_12 AC 502 ms
18,748 KB
testcase_13 AC 303 ms
12,476 KB
testcase_14 AC 331 ms
14,968 KB
testcase_15 AC 145 ms
6,940 KB
testcase_16 AC 119 ms
7,424 KB
testcase_17 AC 414 ms
18,080 KB
testcase_18 AC 418 ms
16,948 KB
testcase_19 AC 36 ms
6,944 KB
testcase_20 AC 157 ms
8,704 KB
testcase_21 AC 303 ms
14,224 KB
testcase_22 AC 452 ms
18,488 KB
testcase_23 AC 44 ms
6,940 KB
testcase_24 AC 182 ms
9,568 KB
testcase_25 AC 321 ms
15,060 KB
testcase_26 AC 91 ms
6,940 KB
testcase_27 AC 304 ms
14,208 KB
testcase_28 AC 168 ms
9,216 KB
testcase_29 AC 405 ms
16,932 KB
testcase_30 AC 103 ms
6,944 KB
testcase_31 AC 254 ms
12,244 KB
testcase_32 AC 220 ms
11,380 KB
testcase_33 AC 510 ms
18,836 KB
testcase_34 AC 484 ms
18,864 KB
testcase_35 AC 516 ms
18,856 KB
testcase_36 AC 488 ms
18,932 KB
testcase_37 AC 522 ms
18,788 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