結果

問題 No.2730 Two Types Luggage
ユーザー Spica08Spica08
提出日時 2024-05-11 18:24:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 583 ms / 2,000 ms
コード長 1,197 bytes
コンパイル時間 2,559 ms
コンパイル使用メモリ 210,552 KB
実行使用メモリ 26,704 KB
最終ジャッジ日時 2024-05-11 18:25:06
合計ジャッジ時間 19,999 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 7 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 17 ms
6,940 KB
testcase_11 AC 368 ms
20,624 KB
testcase_12 AC 557 ms
26,344 KB
testcase_13 AC 299 ms
17,140 KB
testcase_14 AC 372 ms
20,608 KB
testcase_15 AC 168 ms
7,680 KB
testcase_16 AC 137 ms
9,600 KB
testcase_17 AC 470 ms
25,508 KB
testcase_18 AC 437 ms
23,620 KB
testcase_19 AC 39 ms
6,940 KB
testcase_20 AC 173 ms
11,300 KB
testcase_21 AC 347 ms
19,632 KB
testcase_22 AC 487 ms
26,200 KB
testcase_23 AC 51 ms
6,940 KB
testcase_24 AC 208 ms
12,748 KB
testcase_25 AC 379 ms
20,900 KB
testcase_26 AC 104 ms
8,064 KB
testcase_27 AC 350 ms
19,624 KB
testcase_28 AC 194 ms
12,304 KB
testcase_29 AC 439 ms
23,940 KB
testcase_30 AC 117 ms
6,944 KB
testcase_31 AC 287 ms
16,760 KB
testcase_32 AC 257 ms
15,336 KB
testcase_33 AC 574 ms
26,616 KB
testcase_34 AC 564 ms
26,700 KB
testcase_35 AC 565 ms
26,704 KB
testcase_36 AC 583 ms
26,660 KB
testcase_37 AC 565 ms
26,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ull = unsigned long long;
using Matrix = vector<vector<ll>>;
const int inf = 1000000000;
const ll INF = 1000000000000000000;
const ll mod = 998244353;
const ull mod_hash = (1UL << 61) - 1;
const vector<int> dx = {0, 1, 0, -1, 1, 1, -1, -1};
const vector<int> dy = {1, 0, -1, 0, 1, -1, 1, -1};

template <typename T>
struct CumulativeSum {
  vector<T> S;
  CumulativeSum(vector<T> A) {
    int N = A.size();
    S.assign(N + 1, 0);
    for (int i = 0; i < N; i++) S[i + 1] = S[i] + A[i];
  }
  //sum of [l, r) (0-indexed)
  T sum(int l, int r) { return S[r] - S[l]; }
};

int main(){
  ll N, M, W;cin>>N>>M>>W;
  vector<ll> A(N), B(M), C(M);
  for (int i = 0; i < N; i++) cin>>A[i];
  for (int i = 0; i < M; i++) cin>>B[i];
  for (int i = 0; i < M; i++) cin>>C[i];
  sort(A.begin(), A.end(), greater<ll>());
  CumulativeSum<ll> S(A);
  ll ans = 0;
  for (int i = 0; i < (1<<M); i++) {
    ll w = 0, c = 0;
    for (int j = 0; j < M; j++) {
      if((i>>j)&1){
        w += B[j];
        c += C[j];
      }
    }
    if(w > W)continue;
    ans = max(ans, c + S.sum(0, min(N, W - w)));
  }
  cout << ans << endl;
  return 0;
}
0