結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 8 ms
6,940 KB
testcase_11 AC 166 ms
14,188 KB
testcase_12 AC 237 ms
31,136 KB
testcase_13 AC 132 ms
11,220 KB
testcase_14 AC 166 ms
13,988 KB
testcase_15 AC 55 ms
24,584 KB
testcase_16 AC 61 ms
8,856 KB
testcase_17 AC 210 ms
14,664 KB
testcase_18 AC 195 ms
14,360 KB
testcase_19 AC 18 ms
6,940 KB
testcase_20 AC 78 ms
11,136 KB
testcase_21 AC 156 ms
14,040 KB
testcase_22 AC 221 ms
14,784 KB
testcase_23 AC 22 ms
6,944 KB
testcase_24 AC 93 ms
11,512 KB
testcase_25 AC 171 ms
14,036 KB
testcase_26 AC 46 ms
8,520 KB
testcase_27 AC 158 ms
14,352 KB
testcase_28 AC 85 ms
8,564 KB
testcase_29 AC 198 ms
14,380 KB
testcase_30 AC 35 ms
22,104 KB
testcase_31 AC 130 ms
12,520 KB
testcase_32 AC 116 ms
11,812 KB
testcase_33 AC 235 ms
31,072 KB
testcase_34 AC 236 ms
31,128 KB
testcase_35 AC 235 ms
31,124 KB
testcase_36 AC 286 ms
31,320 KB
testcase_37 AC 236 ms
31,176 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