結果

問題 No.2730 Two Types Luggage
ユーザー MMMM
提出日時 2024-04-19 21:33:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 548 ms / 2,000 ms
コード長 1,070 bytes
コンパイル時間 3,812 ms
コンパイル使用メモリ 232,152 KB
実行使用メモリ 18,980 KB
最終ジャッジ日時 2024-10-11 14:14:55
合計ジャッジ時間 15,394 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 5 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 16 ms
5,248 KB
testcase_11 AC 361 ms
14,848 KB
testcase_12 AC 544 ms
18,560 KB
testcase_13 AC 289 ms
12,416 KB
testcase_14 AC 363 ms
14,848 KB
testcase_15 AC 157 ms
6,400 KB
testcase_16 AC 131 ms
7,424 KB
testcase_17 AC 464 ms
18,048 KB
testcase_18 AC 420 ms
16,896 KB
testcase_19 AC 38 ms
5,248 KB
testcase_20 AC 168 ms
8,576 KB
testcase_21 AC 337 ms
14,260 KB
testcase_22 AC 475 ms
18,596 KB
testcase_23 AC 48 ms
5,248 KB
testcase_24 AC 198 ms
9,600 KB
testcase_25 AC 364 ms
14,976 KB
testcase_26 AC 100 ms
6,528 KB
testcase_27 AC 337 ms
14,208 KB
testcase_28 AC 188 ms
9,216 KB
testcase_29 AC 421 ms
16,896 KB
testcase_30 AC 109 ms
5,248 KB
testcase_31 AC 280 ms
12,416 KB
testcase_32 AC 251 ms
11,264 KB
testcase_33 AC 547 ms
18,816 KB
testcase_34 AC 545 ms
18,816 KB
testcase_35 AC 545 ms
18,840 KB
testcase_36 AC 545 ms
18,980 KB
testcase_37 AC 548 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
#define chmin(x,y) (x) = min((x),(y))
#define chmax(x,y) (x) = max((x),(y))
#define ld long double
using namespace std;
using namespace atcoder;
using ll = long long;
const ll mod = 998244353;
using mint = modint998244353;
using Graph = vector<vector<pair<int,int>>>;
const vector<int> dx = {1,0,-1,0}, dy = {0,1,0,-1};

int main(){
  // input
  int N,M; ll 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];
  // prep
  sort(A.begin(),A.end(),greater<ll>{});
  vector<ll> S(N+1);
  for(int i = 0; i < N; i++) S[i+1] = S[i] + A[i];
  
  // solve
  ll ans = 0;
  for(int bt = 0; bt < (1<<M); bt++){
    ll tmp = 0, wei = 0;
    for(int i = 0; i < M; i++){
      if(bt & (1<<i)){
        wei += B[i];
        tmp += C[i];
      }
    }
    
    if(wei > W) continue;
    
    ll can = min(max(0LL, W - wei),ll(N));
    tmp += S[can];
    chmax(ans,tmp);
  }
  
  // output
  cout << ans << endl;
}
0