結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー chocoruskchocorusk
提出日時 2021-06-07 00:35:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,454 bytes
コンパイル時間 4,020 ms
コンパイル使用メモリ 193,420 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-23 22:07:32
合計ジャッジ時間 11,145 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 RE -
testcase_04 WA -
testcase_05 RE -
testcase_06 RE -
testcase_07 WA -
testcase_08 AC 2 ms
5,248 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 2 ms
5,248 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 RE -
testcase_22 AC 2 ms
5,248 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 2 ms
5,248 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 RE -
testcase_35 RE -
testcase_36 AC 2 ms
5,248 KB
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 AC 2 ms
5,248 KB
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 AC 2 ms
5,248 KB
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 RE -
testcase_56 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;

int main()
{
    int n; ll k; cin>>n>>k;
    ll a[22];
    for(int i=0; i<n; i++){
        cin>>a[i];
        if(a[i]==k){
            cout<<"Yes"<<endl;
            return 0;
        }
    }
    ll s[22]={};
    vector<ll> v[22];
    for(int i=1; i<(1<<n); i++){
        for(int j=0; j<n; j++){
            if(i&(1<<j)) s[i]+=a[j];
        }
        for(int j=0; j<n; j++){
            if(i&(1<<j)) v[j].push_back(s[i]);
        }
    }
    for(int i=0; i<n; i++) sort(v[i].begin(), v[i].end());
    for(int i=1; i<(1<<n); i++){
        for(int j=0; j<n; j++){
            if(i&(1<<j)) continue;
            int t=lower_bound(v[j].begin(), v[j].end(), s[i]-k)-v[j].begin();
            if(t<v[j].size() && v[j][t]==s[i]-k){
                cout<<"Yes"<<endl;
                return 0;
            }
        }
    }
    cout<<"No"<<endl;
    return 0;
}
0