結果

問題 No.2730 Two Types Luggage
ユーザー tobbietobbie
提出日時 2024-04-21 22:57:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,457 ms / 2,000 ms
コード長 821 bytes
コンパイル時間 2,075 ms
コンパイル使用メモリ 178,964 KB
実行使用メモリ 69,760 KB
最終ジャッジ日時 2024-10-13 21:24:25
合計ジャッジ時間 27,933 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 7 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 27 ms
5,504 KB
testcase_11 AC 763 ms
52,608 KB
testcase_12 AC 1,129 ms
68,736 KB
testcase_13 AC 638 ms
42,496 KB
testcase_14 AC 832 ms
52,608 KB
testcase_15 AC 253 ms
16,000 KB
testcase_16 AC 263 ms
21,376 KB
testcase_17 AC 982 ms
66,304 KB
testcase_18 AC 901 ms
61,056 KB
testcase_19 AC 68 ms
8,320 KB
testcase_20 AC 339 ms
26,240 KB
testcase_21 AC 720 ms
49,664 KB
testcase_22 AC 1,032 ms
68,352 KB
testcase_23 AC 100 ms
9,088 KB
testcase_24 AC 406 ms
30,336 KB
testcase_25 AC 772 ms
53,248 KB
testcase_26 AC 194 ms
16,768 KB
testcase_27 AC 710 ms
49,792 KB
testcase_28 AC 395 ms
28,544 KB
testcase_29 AC 956 ms
61,440 KB
testcase_30 AC 360 ms
9,216 KB
testcase_31 AC 622 ms
41,856 KB
testcase_32 AC 556 ms
37,632 KB
testcase_33 AC 1,457 ms
69,632 KB
testcase_34 AC 1,455 ms
69,760 KB
testcase_35 AC 1,396 ms
69,504 KB
testcase_36 AC 1,380 ms
69,504 KB
testcase_37 AC 1,377 ms
69,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i, n) for (int i = 0; i < (int)n; i++)
using ll = long long int;

bool comp(int a, int b) {
  return a > b;
}

int main() {
  int N, M;
  ll W;
  cin >> N >> M >> W;
  vector<int> A(N), B(M), C(M);
  rep(i, N) cin >> A[i];
  rep(i, M) cin >> B[i];
  rep(i, M) cin >> C[i];
  map<ll, ll> dp;
  sort(A.begin(), A.end(), comp);
  rep(i, N) {
    if (i + 1 <= W)
      dp[i + 1] = dp[i] + A[i];
    else
      dp[i + 1] = dp[i];
  }
  ll val = dp[N];
  rep(i, (1<<M)) {
    ll bsum = 0, csum = 0;
    rep(j, M) {
      if (i & (1<<j)) {
	bsum += B[j];
	csum += C[j];
      }
    }
    if (bsum > W)
      continue;
    if (W - bsum > N)
      val = max(csum + dp[N], val);
    else
      val = max(csum + dp[W - bsum], val);
  }
  cout << val << endl;
  return 0;
}
0