結果

問題 No.2155 みちらcolor
ユーザー HIcoderHIcoder
提出日時 2024-10-10 22:27:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 881 bytes
コンパイル時間 1,477 ms
コンパイル使用メモリ 118,356 KB
実行使用メモリ 11,808 KB
最終ジャッジ日時 2024-10-10 22:27:36
合計ジャッジ時間 3,664 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
11,728 KB
testcase_01 AC 8 ms
9,752 KB
testcase_02 AC 7 ms
7,656 KB
testcase_03 AC 8 ms
9,596 KB
testcase_04 AC 8 ms
9,688 KB
testcase_05 AC 10 ms
11,640 KB
testcase_06 AC 5 ms
6,820 KB
testcase_07 AC 5 ms
6,820 KB
testcase_08 AC 9 ms
9,612 KB
testcase_09 AC 10 ms
9,736 KB
testcase_10 AC 8 ms
7,844 KB
testcase_11 AC 7 ms
7,808 KB
testcase_12 AC 9 ms
9,728 KB
testcase_13 AC 3 ms
6,820 KB
testcase_14 AC 10 ms
9,620 KB
testcase_15 AC 3 ms
6,820 KB
testcase_16 AC 6 ms
7,688 KB
testcase_17 AC 4 ms
6,816 KB
testcase_18 AC 9 ms
11,728 KB
testcase_19 AC 10 ms
11,516 KB
testcase_20 AC 11 ms
11,736 KB
testcase_21 AC 12 ms
11,776 KB
testcase_22 AC 10 ms
11,732 KB
testcase_23 AC 10 ms
11,800 KB
testcase_24 AC 12 ms
11,772 KB
testcase_25 AC 12 ms
11,728 KB
testcase_26 AC 12 ms
11,776 KB
testcase_27 AC 12 ms
11,808 KB
testcase_28 AC 11 ms
11,776 KB
testcase_29 AC 10 ms
11,780 KB
testcase_30 AC 10 ms
11,596 KB
testcase_31 AC 11 ms
11,752 KB
testcase_32 AC 10 ms
11,660 KB
testcase_33 AC 11 ms
11,748 KB
testcase_34 AC 11 ms
11,644 KB
testcase_35 AC 10 ms
9,768 KB
testcase_36 AC 11 ms
11,656 KB
testcase_37 AC 11 ms
11,728 KB
testcase_38 AC 10 ms
11,592 KB
testcase_39 AC 12 ms
11,740 KB
testcase_40 AC 12 ms
11,732 KB
testcase_41 AC 12 ms
11,728 KB
testcase_42 AC 12 ms
11,776 KB
testcase_43 AC 3 ms
6,816 KB
testcase_44 AC 2 ms
6,816 KB
testcase_45 AC 2 ms
6,816 KB
testcase_46 AC 2 ms
6,816 KB
testcase_47 AC 4 ms
6,820 KB
testcase_48 AC 4 ms
6,816 KB
testcase_49 AC 2 ms
6,816 KB
testcase_50 AC 4 ms
6,816 KB
testcase_51 AC 4 ms
6,820 KB
testcase_52 AC 4 ms
6,820 KB
testcase_53 AC 4 ms
6,820 KB
testcase_54 AC 3 ms
6,820 KB
testcase_55 AC 2 ms
6,816 KB
testcase_56 AC 3 ms
6,816 KB
testcase_57 AC 3 ms
6,816 KB
testcase_58 AC 4 ms
6,816 KB
testcase_59 AC 3 ms
6,816 KB
testcase_60 AC 3 ms
6,820 KB
testcase_61 AC 3 ms
6,820 KB
testcase_62 AC 4 ms
6,820 KB
testcase_63 AC 4 ms
6,816 KB
testcase_64 AC 4 ms
6,820 KB
testcase_65 AC 3 ms
6,816 KB
testcase_66 AC 4 ms
6,820 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;

bool dp[105][1000*100+5];

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

    const int MAX=1000*100;

    dp[0][L]=1;

    for(int i=0;i<N;i++){
        for(int c=0;c<=MAX;c++){
            if(dp[i][c]){
                int x=(c+A[i])/2;
                dp[i+1][x]=1;
                dp[i+1][c]=1;
            }
        }
    }

    if(dp[N][M]){
        cout<<"Yes"<<endl;
    }else{
        cout<<"No"<<endl;
    }
}
0