結果

問題 No.2730 Two Types Luggage
ユーザー Dương Nguyễn CảnhDương Nguyễn Cảnh
提出日時 2024-04-19 21:31:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 286 ms / 2,000 ms
コード長 1,812 bytes
コンパイル時間 2,495 ms
コンパイル使用メモリ 209,160 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-10-11 14:09:29
合計ジャッジ時間 9,255 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 6 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 8 ms
5,248 KB
testcase_11 AC 159 ms
11,796 KB
testcase_12 AC 282 ms
14,608 KB
testcase_13 AC 128 ms
10,164 KB
testcase_14 AC 163 ms
11,856 KB
testcase_15 AC 110 ms
5,632 KB
testcase_16 AC 60 ms
6,400 KB
testcase_17 AC 207 ms
14,336 KB
testcase_18 AC 189 ms
13,492 KB
testcase_19 AC 18 ms
5,248 KB
testcase_20 AC 76 ms
7,168 KB
testcase_21 AC 151 ms
11,292 KB
testcase_22 AC 212 ms
14,568 KB
testcase_23 AC 24 ms
5,248 KB
testcase_24 AC 90 ms
7,860 KB
testcase_25 AC 165 ms
11,916 KB
testcase_26 AC 45 ms
5,632 KB
testcase_27 AC 153 ms
11,292 KB
testcase_28 AC 83 ms
7,552 KB
testcase_29 AC 193 ms
13,568 KB
testcase_30 AC 88 ms
5,248 KB
testcase_31 AC 127 ms
9,896 KB
testcase_32 AC 112 ms
9,272 KB
testcase_33 AC 283 ms
14,784 KB
testcase_34 AC 286 ms
14,976 KB
testcase_35 AC 284 ms
14,896 KB
testcase_36 AC 282 ms
14,856 KB
testcase_37 AC 285 ms
14,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*
#pragma GCC optimize("Ofast,unroll-loops")
#pragma GCC target("avx2,fma,bmi,bmi2,sse4.2,popcnt,lzcnt")
*/

#include <bits/stdc++.h>
#define taskname ""
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define i64 long long
#define pb push_back
#define ff first
#define ss second
#define isz(x) (int)x.size()
using namespace std;

const int mxN = 2e5 + 5;
const int mod = 1e9 + 7;
const i64 oo = 1e18;

void solve() {
    int n, m; i64 w;
    cin >> n >> m >> w;
    vector<int> a(n), b(m), c(m);
    for (auto &val : a) cin >> val;
    for (auto &val : b) cin >> val;
    for (auto &val : c) cin >> val;

    sort(rall(a));
    vector<i64> pfx(n + 1);
    for (int i = 0; i < n; ++i) pfx[i + 1] = pfx[i] + a[i];

    i64 res = 0;
    for (int i = 0; i < (1 << m); ++i) {
        i64 cw = w, sum = 0;
        for (int j = 0; j < m; ++j) if (i >> j & 1) {
            cw -= b[j];
            sum += c[j];
        }
        if (cw < 0) continue;
        cw = min<i64>(cw, n);
        sum += pfx[cw];
        res = max(res, sum);
    }
    cout << res << endl;
}

signed main() {

#ifndef CDuongg
    if(fopen(taskname".inp", "r"))
        assert(freopen(taskname".inp", "r", stdin)), assert(freopen(taskname".out", "w", stdout));
#else
    freopen("bai3.inp", "r", stdin);
    freopen("bai3.out", "w", stdout);
    auto start = chrono::high_resolution_clock::now();
#endif

    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    int t = 1; //cin >> t;
    while(t--) solve();

#ifdef CDuongg
   auto end = chrono::high_resolution_clock::now();
   cout << "\n"; for(int i = 1; i <= 100; ++i) cout << '=';
   cout << "\nExecution time: " << chrono::duration_cast<chrono::milliseconds> (end - start).count() << "[ms]" << endl;
   cout << "Check array size pls sir" << endl;
#endif

}
0