結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー chocoruskchocorusk
提出日時 2021-06-07 00:41:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,656 bytes
コンパイル時間 3,557 ms
コンパイル使用メモリ 193,484 KB
実行使用メモリ 105,384 KB
最終ジャッジ日時 2024-11-23 22:20:15
合計ジャッジ時間 37,511 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
16,896 KB
testcase_01 AC 4 ms
105,008 KB
testcase_02 AC 4 ms
16,896 KB
testcase_03 AC 4 ms
105,252 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 5 ms
16,896 KB
testcase_07 WA -
testcase_08 AC 4 ms
17,024 KB
testcase_09 AC 4 ms
105,244 KB
testcase_10 AC 4 ms
16,896 KB
testcase_11 AC 2 ms
98,856 KB
testcase_12 AC 5 ms
16,896 KB
testcase_13 AC 4 ms
105,384 KB
testcase_14 AC 4 ms
17,152 KB
testcase_15 AC 4 ms
11,648 KB
testcase_16 AC 5 ms
11,648 KB
testcase_17 AC 5 ms
11,776 KB
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 AC 5 ms
11,604 KB
testcase_22 AC 4 ms
11,644 KB
testcase_23 AC 4 ms
11,648 KB
testcase_24 AC 4 ms
11,648 KB
testcase_25 AC 4 ms
11,648 KB
testcase_26 AC 4 ms
11,648 KB
testcase_27 AC 4 ms
11,648 KB
testcase_28 AC 4 ms
11,688 KB
testcase_29 AC 4 ms
11,716 KB
testcase_30 AC 4 ms
11,648 KB
testcase_31 AC 3 ms
11,648 KB
testcase_32 AC 4 ms
11,648 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 5 ms
11,648 KB
testcase_35 AC 5 ms
11,748 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 1,168 ms
93,720 KB
testcase_38 AC 1,157 ms
93,608 KB
testcase_39 TLE -
testcase_40 AC 847 ms
93,720 KB
testcase_41 AC 839 ms
93,600 KB
testcase_42 AC 1,109 ms
93,616 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 417 ms
93,608 KB
testcase_45 WA -
testcase_46 AC 1,197 ms
93,608 KB
testcase_47 AC 466 ms
30,032 KB
testcase_48 TLE -
testcase_49 AC 724 ms
93,604 KB
testcase_50 AC 1 ms
5,248 KB
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
権限があれば一括ダウンロードができます

ソースコード

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[1<<20]={};
    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;
            }
            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