結果

問題 No.2741 Balanced Choice
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-30 16:06:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 978 bytes
コンパイル時間 2,573 ms
コンパイル使用メモリ 202,956 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-30 16:06:30
合計ジャッジ時間 4,171 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
6,820 KB
testcase_01 AC 51 ms
6,816 KB
testcase_02 AC 53 ms
6,816 KB
testcase_03 AC 54 ms
6,820 KB
testcase_04 AC 54 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 30 ms
6,816 KB
testcase_08 AC 42 ms
6,816 KB
testcase_09 AC 28 ms
6,816 KB
testcase_10 AC 33 ms
6,816 KB
testcase_11 AC 43 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    /*
       dp1(i):=タイプ1での結果
       dp2(j):=タイプ2での結果

       max(0<=i<=W, max(0, i-D)<=j<=min(W-i, i+D)) dp1(i)+dp2(j)
    */

    ll N, W, D, t, w, v;
    cin >> N >> W >> D;
    vector<ll> dp1(W+1, -1e18), dp2(W+1, -1e18);
    dp1[0] = 0; dp2[0] = 0;
    for (int i=0; i<N; i++){
        cin >> t >> w >> v;
        if (t == 1){
            for (int j=W; j>=0; j--){
                if (j+w<=W) dp1[j+w] = max(dp1[j+w], dp1[j]+v);
            }
        }
        else{
            for (int j=W; j>=0; j--){
                if (j+w<=W) dp2[j+w] = max(dp2[j+w], dp2[j]+v);
            }
        }
    }

    ll ans=0;
    for (int i=0; i<=W; i++){
        for (int j=0; j<=W-i; j++){
            if (abs(j-i) <= D) ans = max(ans, dp1[i]+dp2[j]);
        }
    }

    cout << ans << endl;

    return 0;
}
0