結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 70 ms
7,296 KB
testcase_03 AC 72 ms
7,296 KB
testcase_04 AC 71 ms
7,296 KB
testcase_05 AC 71 ms
7,168 KB
testcase_06 AC 71 ms
7,168 KB
testcase_07 AC 71 ms
7,296 KB
testcase_08 AC 72 ms
7,168 KB
testcase_09 AC 71 ms
7,168 KB
testcase_10 AC 72 ms
7,296 KB
testcase_11 AC 70 ms
7,296 KB
testcase_12 AC 71 ms
7,296 KB
testcase_13 AC 71 ms
7,296 KB
testcase_14 AC 70 ms
7,296 KB
testcase_15 AC 71 ms
7,296 KB
testcase_16 AC 70 ms
7,296 KB
testcase_17 AC 73 ms
7,424 KB
testcase_18 AC 71 ms
7,168 KB
testcase_19 AC 71 ms
7,296 KB
testcase_20 AC 71 ms
7,296 KB
testcase_21 AC 71 ms
7,168 KB
testcase_22 AC 71 ms
7,296 KB
testcase_23 AC 70 ms
7,168 KB
testcase_24 AC 71 ms
7,168 KB
testcase_25 AC 71 ms
7,296 KB
testcase_26 AC 71 ms
7,296 KB
testcase_27 AC 71 ms
7,296 KB
testcase_28 AC 71 ms
7,296 KB
testcase_29 AC 300 ms
19,548 KB
testcase_30 AC 290 ms
19,456 KB
testcase_31 AC 288 ms
19,584 KB
testcase_32 AC 289 ms
19,456 KB
testcase_33 AC 299 ms
19,584 KB
testcase_34 AC 291 ms
19,584 KB
testcase_35 AC 290 ms
19,456 KB
testcase_36 AC 289 ms
19,576 KB
testcase_37 AC 288 ms
19,584 KB
testcase_38 AC 296 ms
19,456 KB
testcase_39 AC 289 ms
19,584 KB
testcase_40 AC 288 ms
19,660 KB
testcase_41 AC 290 ms
19,456 KB
testcase_42 AC 290 ms
19,456 KB
testcase_43 AC 288 ms
19,584 KB
testcase_44 AC 287 ms
19,584 KB
testcase_45 AC 298 ms
19,584 KB
testcase_46 AC 288 ms
19,712 KB
evil_random20_1.txt AC 290 ms
19,552 KB
evil_random20_2.txt AC 292 ms
19,712 KB
evil_random20_3.txt AC 300 ms
19,548 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(!((S>>i)&1)){
                //Sの中にiがない場合
                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(!((S>>i)&1)){
                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