結果

問題 No.2686 商品券の使い道
ユーザー HIcoderHIcoder
提出日時 2024-08-17 14:15:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 332 ms / 3,000 ms
コード長 1,626 bytes
コンパイル時間 1,392 ms
コンパイル使用メモリ 120,036 KB
実行使用メモリ 19,700 KB
最終ジャッジ日時 2024-08-17 14:15:38
合計ジャッジ時間 11,732 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 77 ms
7,296 KB
testcase_03 AC 76 ms
7,296 KB
testcase_04 AC 76 ms
7,296 KB
testcase_05 AC 76 ms
7,296 KB
testcase_06 AC 75 ms
7,296 KB
testcase_07 AC 75 ms
7,296 KB
testcase_08 AC 76 ms
7,168 KB
testcase_09 AC 76 ms
7,296 KB
testcase_10 AC 76 ms
7,296 KB
testcase_11 AC 75 ms
7,168 KB
testcase_12 AC 76 ms
7,168 KB
testcase_13 AC 75 ms
7,168 KB
testcase_14 AC 74 ms
7,296 KB
testcase_15 AC 76 ms
7,296 KB
testcase_16 AC 75 ms
7,296 KB
testcase_17 AC 76 ms
7,296 KB
testcase_18 AC 76 ms
7,168 KB
testcase_19 AC 76 ms
7,296 KB
testcase_20 AC 75 ms
7,296 KB
testcase_21 AC 76 ms
7,168 KB
testcase_22 AC 75 ms
7,296 KB
testcase_23 AC 75 ms
7,296 KB
testcase_24 AC 75 ms
7,296 KB
testcase_25 AC 76 ms
7,168 KB
testcase_26 AC 75 ms
7,168 KB
testcase_27 AC 76 ms
7,296 KB
testcase_28 AC 76 ms
7,296 KB
testcase_29 AC 312 ms
19,612 KB
testcase_30 AC 314 ms
19,584 KB
testcase_31 AC 306 ms
19,584 KB
testcase_32 AC 332 ms
19,584 KB
testcase_33 AC 310 ms
19,588 KB
testcase_34 AC 310 ms
19,584 KB
testcase_35 AC 310 ms
19,456 KB
testcase_36 AC 311 ms
19,700 KB
testcase_37 AC 317 ms
19,456 KB
testcase_38 AC 307 ms
19,456 KB
testcase_39 AC 306 ms
19,424 KB
testcase_40 AC 307 ms
19,584 KB
testcase_41 AC 318 ms
19,584 KB
testcase_42 AC 308 ms
19,456 KB
testcase_43 AC 309 ms
19,584 KB
testcase_44 AC 306 ms
19,456 KB
testcase_45 AC 320 ms
19,456 KB
testcase_46 AC 308 ms
19,584 KB
evil_random20_1.txt AC 309 ms
19,456 KB
evil_random20_2.txt AC 318 ms
19,584 KB
evil_random20_3.txt AC 313 ms
19,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<cassert>
#include<random>
#include<set>
#include<map>
#include<cassert>
#include<unordered_map>
#include<bitset>
#include<numeric>
#include<algorithm>
using namespace std;
typedef long long ll;
const int inf=1<<30;
const ll INF=1LL<<62;
typedef pair<int,ll> P;
typedef pair<int,P> PP; 
const ll MOD=998244353;

int main(){
    int N;
    ll M,Q;
    cin>>N>>M>>Q;
    vector<ll> A(N),B(N);
    for(int i=0;i<N;i++) cin>>A[i]>>B[i];

    vector<ll> dpA(1<<N,0),dpB(1<<N,0);
    for(int S=0;S<(1<<N);S++){
        ll totalA=0,totalB=0;
        for(int i=0;i<N;i++){
            if((S>>i)&1){
                totalA+=A[i];
                totalB+=B[i];
            }
        }
        if(totalA<=M){
            dpA[S]=totalB;
        }
    }

    for(int S=0;S<(1<<N);S++){
        ll totalA=0,totalB=0;
        for(int i=0;i<N;i++){
            if((S>>i)&1){
                totalA+=A[i];
                totalB+=B[i];
            }
        }
        if(totalA<=Q){
            dpB[S]=totalB;
        }
    }

    //Aの高速ゼータ変換
    for(int S=0;S<(1<<N);S++){
        for(int i=0;i<N;i++){
            if(((1<<i)|S) != S){
                dpA[(1<<i)|S]=max(dpA[(1<<i)|S],dpA[S]);
            }
        }
    }

    for(int S=0;S<(1<<N);S++){
        for(int i=0;i<N;i++){
            if(((1<<i)|S) != S){
                dpB[(1<<i)|S]=max(dpB[(1<<i)|S],dpB[S]);
            }
        }
    }

    ll ans=0;
    for(int S=0;S<(1<<N);S++){
        int rem=((1<<N)-1)^S;
        ans=max(ans,dpA[S]+dpB[rem]);
    }
    cout<<ans<<endl;

}
0