結果

問題 No.2686 商品券の使い道
ユーザー nononnonon
提出日時 2024-03-21 10:31:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 150 ms / 3,000 ms
コード長 790 bytes
コンパイル時間 2,192 ms
コンパイル使用メモリ 200,308 KB
実行使用メモリ 11,684 KB
最終ジャッジ日時 2024-09-30 10:03:27
合計ジャッジ時間 6,888 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 36 ms
5,504 KB
testcase_03 AC 35 ms
5,504 KB
testcase_04 AC 35 ms
5,376 KB
testcase_05 AC 37 ms
5,376 KB
testcase_06 AC 36 ms
5,504 KB
testcase_07 AC 34 ms
5,376 KB
testcase_08 AC 36 ms
5,504 KB
testcase_09 AC 36 ms
5,504 KB
testcase_10 AC 35 ms
5,376 KB
testcase_11 AC 33 ms
5,376 KB
testcase_12 AC 34 ms
5,376 KB
testcase_13 AC 35 ms
5,376 KB
testcase_14 AC 34 ms
5,376 KB
testcase_15 AC 35 ms
5,376 KB
testcase_16 AC 35 ms
5,504 KB
testcase_17 AC 34 ms
5,376 KB
testcase_18 AC 34 ms
5,376 KB
testcase_19 AC 34 ms
5,504 KB
testcase_20 AC 35 ms
5,504 KB
testcase_21 AC 34 ms
5,504 KB
testcase_22 AC 35 ms
5,376 KB
testcase_23 AC 35 ms
5,376 KB
testcase_24 AC 38 ms
5,504 KB
testcase_25 AC 37 ms
5,504 KB
testcase_26 AC 37 ms
5,504 KB
testcase_27 AC 35 ms
5,376 KB
testcase_28 AC 36 ms
5,376 KB
testcase_29 AC 144 ms
11,660 KB
testcase_30 AC 143 ms
11,648 KB
testcase_31 AC 141 ms
11,648 KB
testcase_32 AC 142 ms
11,520 KB
testcase_33 AC 145 ms
11,520 KB
testcase_34 AC 143 ms
11,648 KB
testcase_35 AC 144 ms
11,520 KB
testcase_36 AC 145 ms
11,504 KB
testcase_37 AC 143 ms
11,508 KB
testcase_38 AC 142 ms
11,624 KB
testcase_39 AC 141 ms
11,648 KB
testcase_40 AC 143 ms
11,496 KB
testcase_41 AC 146 ms
11,648 KB
testcase_42 AC 150 ms
11,520 KB
testcase_43 AC 142 ms
11,648 KB
testcase_44 AC 140 ms
11,684 KB
testcase_45 AC 142 ms
11,508 KB
testcase_46 AC 142 ms
11,520 KB
evil_random20_1.txt AC 146 ms
11,540 KB
evil_random20_2.txt AC 148 ms
11,648 KB
evil_random20_3.txt AC 147 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int N,A[20],B[20];
long M,Q,dp[1<<20];
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cin>>N>>M>>Q;
    for(int i=0;i<N;i++)cin>>A[i]>>B[i];
    for(int i=0;i<(1<<N);i++)
    {
        long key=0,val=0;
        for(int j=0;j<N;j++)if(i>>j&1)
        {
            key+=A[j];
            val+=B[j];
        }
        if(key<=M)dp[i]=val;
    }
    for(int j=0;j<N;j++)for(int i=0;i<(1<<N);i++)if(i>>j&1)dp[i]=max(dp[i],dp[i^(1<<j)]);
    long ans=0;
    const int mask=(1<<N)-1;
    for(int i=0;i<(1<<N);i++)
    {
        long key=0,val=0;
        for(int j=0;j<N;j++)if(i>>j&1)
        {
            key+=A[j];
            val+=B[j];
        }
        if(key<=Q)ans=max(ans,val+dp[mask^i]);
    }
    cout<<ans<<endl;
}
0