結果

問題 No.2686 商品券の使い道
ユーザー HIcoderHIcoder
提出日時 2024-08-17 12:35:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,152 bytes
コンパイル時間 1,423 ms
コンパイル使用メモリ 121,528 KB
実行使用メモリ 26,548 KB
最終ジャッジ日時 2024-08-17 12:35:26
合計ジャッジ時間 15,279 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,888 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 20 ms
7,276 KB
testcase_03 AC 24 ms
7,280 KB
testcase_04 AC 29 ms
7,260 KB
testcase_05 AC 22 ms
7,372 KB
testcase_06 AC 21 ms
7,320 KB
testcase_07 AC 23 ms
7,280 KB
testcase_08 AC 20 ms
7,436 KB
testcase_09 AC 20 ms
7,288 KB
testcase_10 AC 29 ms
7,276 KB
testcase_11 AC 778 ms
7,324 KB
testcase_12 AC 53 ms
7,296 KB
testcase_13 AC 680 ms
7,340 KB
testcase_14 AC 773 ms
7,348 KB
testcase_15 AC 270 ms
7,340 KB
testcase_16 AC 480 ms
7,376 KB
testcase_17 AC 270 ms
7,392 KB
testcase_18 AC 161 ms
7,456 KB
testcase_19 AC 178 ms
7,284 KB
testcase_20 AC 702 ms
7,252 KB
testcase_21 AC 740 ms
7,348 KB
testcase_22 AC 151 ms
7,320 KB
testcase_23 AC 410 ms
7,360 KB
testcase_24 AC 629 ms
7,340 KB
testcase_25 AC 31 ms
7,352 KB
testcase_26 AC 174 ms
7,280 KB
testcase_27 AC 773 ms
7,376 KB
testcase_28 AC 18 ms
7,288 KB
testcase_29 AC 1,076 ms
19,668 KB
testcase_30 TLE -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
evil_random20_1.txt -- -
evil_random20_2.txt -- -
evil_random20_3.txt -- -
権限があれば一括ダウンロードができます

ソースコード

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<pair<ll,ll>> dp(1<<N,{0,0});
    for(int S=0;S<(1<<N);S++){
        for(int i=0;i<N;i++){
            if((S>>i)&1){
                dp[S].first+=A[i];
                dp[S].second+=B[i];
            }
        }
    }

    ll ans=0;
    int all=(1<<N)-1;
    for(int S=0;S<(1<<N);S++){
        if(dp[S].first<=M){
            int T=all-S;
            
            ans=max(ans,dp[S].second);//2日目を何も買わない

            for(int t=T;t>0;t=(t-1)&T){
                if(dp[t].first<=Q){
                    ans=max(ans,dp[S].second + dp[t].second);
                }
            }
        }
    }

    cout<<ans<<endl;
}
0