結果

問題 No.2730 Two Types Luggage
ユーザー tnakao0123tnakao0123
提出日時 2024-04-30 16:08:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 1,204 bytes
コンパイル時間 716 ms
コンパイル使用メモリ 70,100 KB
実行使用メモリ 31,180 KB
最終ジャッジ日時 2024-11-20 12:49:27
合計ジャッジ時間 7,254 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
6,816 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 2 ms
6,816 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 9 ms
6,820 KB
testcase_11 AC 168 ms
13,992 KB
testcase_12 AC 236 ms
31,092 KB
testcase_13 AC 134 ms
12,764 KB
testcase_14 AC 169 ms
13,860 KB
testcase_15 AC 55 ms
24,764 KB
testcase_16 AC 62 ms
8,084 KB
testcase_17 AC 217 ms
14,540 KB
testcase_18 AC 197 ms
14,364 KB
testcase_19 AC 18 ms
6,820 KB
testcase_20 AC 79 ms
8,632 KB
testcase_21 AC 158 ms
11,772 KB
testcase_22 AC 223 ms
14,660 KB
testcase_23 AC 23 ms
6,852 KB
testcase_24 AC 93 ms
11,448 KB
testcase_25 AC 173 ms
13,780 KB
testcase_26 AC 48 ms
8,344 KB
testcase_27 AC 159 ms
13,824 KB
testcase_28 AC 87 ms
11,412 KB
testcase_29 AC 199 ms
14,508 KB
testcase_30 AC 33 ms
22,088 KB
testcase_31 AC 132 ms
12,132 KB
testcase_32 AC 118 ms
11,060 KB
testcase_33 AC 237 ms
31,148 KB
testcase_34 AC 237 ms
31,124 KB
testcase_35 AC 237 ms
31,048 KB
testcase_36 AC 238 ms
31,180 KB
testcase_37 AC 238 ms
31,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2730.cc:  No.2730 Two Types Luggage - yukicoder
 */

#include<cstdio>
#include<algorithm>
#include<functional>

using namespace std;

/* constant */

const int MAX_N = 1000000;
const int MAX_M = 20;
const int MBITS = 1 << MAX_M;

/* typedef */

typedef long long ll;

/* global variables */

int as[MAX_N], bs[MAX_M], cs[MAX_M];
ll ass[MAX_N + 1], bss[MBITS], css[MBITS];

/* subroutines */

/* main */

int main() {
  int n, m;
  ll w;
  scanf("%d%d%lld", &n, &m, &w);
  for (int i = 0; i < n; i++) scanf("%d", as + i);
  for (int i = 0; i < m; i++) scanf("%d", bs + i);
  for (int i = 0; i < m; i++) scanf("%d", cs + i);

  sort(as, as + n, greater<int>());
  for (int i = 0; i < n; i++) ass[i + 1] = ass[i] + as[i];

  int mbits = 1 << m;
  for (int bits = 1, msb = 1, msi = 0; bits < mbits; bits++) {
    if ((msb << 1) <= bits) msb <<= 1, msi++;
    bss[bits] = bss[bits ^ msb] + bs[msi];
    css[bits] = css[bits ^ msb] + cs[msi];
  }

  ll maxc = 0;
  for (int bits = 0; bits < mbits; bits++) {
    ll dw = w - bss[bits];
    if (dw >= 0) {
      ll c = css[bits] + ass[min((ll)n, dw)];
      maxc = max(maxc, c);
    }
  }

  printf("%lld\n", maxc);

  return 0;
}
0