結果

問題 No.2686 商品券の使い道
ユーザー otoshigootoshigo
提出日時 2024-03-20 23:25:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 149 ms / 3,000 ms
コード長 1,131 bytes
コンパイル時間 687 ms
コンパイル使用メモリ 77,464 KB
実行使用メモリ 19,712 KB
最終ジャッジ日時 2024-09-30 09:29:05
合計ジャッジ時間 5,840 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 39 ms
7,168 KB
testcase_03 AC 37 ms
7,296 KB
testcase_04 AC 38 ms
7,296 KB
testcase_05 AC 38 ms
7,296 KB
testcase_06 AC 38 ms
7,296 KB
testcase_07 AC 37 ms
7,296 KB
testcase_08 AC 37 ms
7,296 KB
testcase_09 AC 36 ms
7,296 KB
testcase_10 AC 38 ms
7,296 KB
testcase_11 AC 38 ms
7,168 KB
testcase_12 AC 37 ms
7,296 KB
testcase_13 AC 36 ms
7,168 KB
testcase_14 AC 36 ms
7,296 KB
testcase_15 AC 38 ms
7,296 KB
testcase_16 AC 36 ms
7,296 KB
testcase_17 AC 37 ms
7,296 KB
testcase_18 AC 35 ms
7,168 KB
testcase_19 AC 36 ms
7,168 KB
testcase_20 AC 36 ms
7,296 KB
testcase_21 AC 36 ms
7,296 KB
testcase_22 AC 36 ms
7,296 KB
testcase_23 AC 36 ms
7,296 KB
testcase_24 AC 36 ms
7,296 KB
testcase_25 AC 37 ms
7,296 KB
testcase_26 AC 41 ms
7,296 KB
testcase_27 AC 37 ms
7,296 KB
testcase_28 AC 37 ms
7,296 KB
testcase_29 AC 149 ms
19,448 KB
testcase_30 AC 148 ms
19,584 KB
testcase_31 AC 142 ms
19,584 KB
testcase_32 AC 143 ms
19,456 KB
testcase_33 AC 140 ms
19,584 KB
testcase_34 AC 141 ms
19,584 KB
testcase_35 AC 146 ms
19,584 KB
testcase_36 AC 146 ms
19,712 KB
testcase_37 AC 147 ms
19,584 KB
testcase_38 AC 144 ms
19,584 KB
testcase_39 AC 144 ms
19,456 KB
testcase_40 AC 147 ms
19,584 KB
testcase_41 AC 145 ms
19,452 KB
testcase_42 AC 146 ms
19,584 KB
testcase_43 AC 146 ms
19,584 KB
testcase_44 AC 146 ms
19,584 KB
testcase_45 AC 143 ms
19,584 KB
testcase_46 AC 145 ms
19,572 KB
evil_random20_1.txt AC 146 ms
19,456 KB
evil_random20_2.txt AC 142 ms
19,584 KB
evil_random20_3.txt AC 142 ms
19,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
using ll=long long;
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    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>V(1<<N),W(1<<N);
    for(int bit=0;bit<1<<N;bit++){
        ll C=0,D=0;
        for(int i=0;i<N;i++){
            if(bit>>i&1){
                C+=A[i];
                D+=B[i];
            }
        }
        if(C<=M)V[bit]=D;
        if(C<=Q)W[bit]=D;
    }
    for(int bit=0;bit<1<<N;bit++){
        for(int i=0;i<N;i++){
            if(bit>>i&1){
                chmax(V[bit],V[bit^(1<<i)]);
                chmax(W[bit],W[bit^(1<<i)]);
            }
        }
    }
    ll ans=0;
    for(int bit=0;bit<1<<N;bit++){
        chmax(ans,V[bit]+W[((1<<N)-1)^bit]);
    }
    cout<<ans<<"\n";
}
0