結果

問題 No.2730 Two Types Luggage
ユーザー IchigoYPIchigoYP
提出日時 2024-04-19 23:43:36
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,720 bytes
コンパイル時間 3,788 ms
コンパイル使用メモリ 259,328 KB
実行使用メモリ 371,284 KB
最終ジャッジ日時 2024-10-11 18:29:44
合計ジャッジ時間 18,000 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 20 ms
21,264 KB
testcase_05 AC 4 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 7 ms
7,424 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 469 ms
18,048 KB
testcase_18 AC 434 ms
16,868 KB
testcase_19 AC 39 ms
5,248 KB
testcase_20 AC 168 ms
8,792 KB
testcase_21 AC 350 ms
14,360 KB
testcase_22 AC 472 ms
18,684 KB
testcase_23 AC 62 ms
22,648 KB
testcase_24 AC 202 ms
13,728 KB
testcase_25 AC 370 ms
15,100 KB
testcase_26 AC 102 ms
6,400 KB
testcase_27 AC 348 ms
15,060 KB
testcase_28 AC 189 ms
9,168 KB
testcase_29 AC 437 ms
16,896 KB
testcase_30 AC 395 ms
357,024 KB
testcase_31 AC 290 ms
12,416 KB
testcase_32 AC 260 ms
11,444 KB
testcase_33 AC 866 ms
371,284 KB
testcase_34 AC 878 ms
371,124 KB
testcase_35 AC 869 ms
371,252 KB
testcase_36 AC 885 ms
371,136 KB
testcase_37 AC 871 ms
371,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
using ull = unsigned long long;
using vll = vector<ll>;
using vvll = vector<vector<ll>>;
using P = pair<ll, ll>;
using vp = vector<pair<ll, ll>>;
#define mod 998244353
#define all(v) v.begin(), v.end()
#define resort(v) sort(v.rbegin(), v.rend())
#define rep(i, n) for (ll i = 0; i < n; ++i)
#define per(i, n) for (ll i = n - 1; i >= 0; --i)
#define rep2(i, a, n) for (ll i = a; i < n; ++i)
#define per2(i, a, n) for (ll i = n - 1; i >= a; --i)
#define chmin(a, b) a = min(a, b)
#define chmax(a, b) a = max(a, b)
const ll inf = 1ll << 60;
ll dx[] = {1,0,0,-1,1,-1,1,-1};
ll dy[] = {0,1,-1,0,1,1,-1,-1};

int main() {
    ll n, m, w, ans = 0;
    cin >> n >> m >> w;
    vll a(n), b(m), c(m), s(n + 1);
    rep(i, n) cin >> a[i];
    rep(i, m) cin >> b[i];
    rep(i, m) cin >> c[i];
    resort(a);
    s[0] = 0;
    rep(i, n) s[i + 1] = s[i] + a[i];
    vvll dp(m + 1, vll(1ll << m));
    vvll dpw(m + 1, vll(1ll << m));
    rep(i, m){
        rep(j, (1ll << m)){
            chmax(dp[i + 1][j], dp[i][j]);
            if(dpw[i][j] + b[i] <= w) chmax(dp[i + 1][j | (1ll << i)], dp[i][j] + c[i]);
            dpw[i + 1][j] = dpw[i][j];
            dpw[i + 1][j | (1ll << i)] = dpw[i][j] + b[i];
        }
    }
    ans = s[n];
    rep(i, (1ll << m)){
        //cout << dpw[m][i] << endl;
        //cout << "i: " << i << endl; // デバッグ情報: i の値を出力
        if(dpw[m][i] > w) continue;
        if(w - dpw[m][i] >= 0 && w - dpw[m][i] < n) chmax(ans, dp[m][i] + s[w - dpw[m][i]]);
        else if(w - dpw[m][i] >= n) chmax(ans, dp[m][i] + s[n]);
        else chmax(ans, dp[m][i]);
    }
    cout << ans << endl;
}
0