結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー chocoruskchocorusk
提出日時 2021-06-07 01:03:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,020 ms / 2,000 ms
コード長 1,403 bytes
コンパイル時間 3,017 ms
コンパイル使用メモリ 197,352 KB
実行使用メモリ 77,336 KB
最終ジャッジ日時 2024-05-16 14:35:37
合計ジャッジ時間 17,649 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
11,816 KB
testcase_01 AC 4 ms
11,840 KB
testcase_02 AC 4 ms
11,808 KB
testcase_03 AC 3 ms
11,780 KB
testcase_04 AC 4 ms
11,800 KB
testcase_05 AC 4 ms
11,788 KB
testcase_06 AC 4 ms
11,784 KB
testcase_07 AC 4 ms
11,780 KB
testcase_08 AC 4 ms
11,740 KB
testcase_09 AC 4 ms
11,808 KB
testcase_10 AC 3 ms
11,660 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 3 ms
11,724 KB
testcase_13 AC 4 ms
11,816 KB
testcase_14 AC 4 ms
11,632 KB
testcase_15 AC 5 ms
11,808 KB
testcase_16 AC 4 ms
11,732 KB
testcase_17 AC 3 ms
11,732 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 5 ms
11,792 KB
testcase_22 AC 4 ms
11,816 KB
testcase_23 AC 4 ms
11,848 KB
testcase_24 AC 4 ms
11,712 KB
testcase_25 AC 3 ms
11,756 KB
testcase_26 AC 3 ms
11,832 KB
testcase_27 AC 4 ms
11,924 KB
testcase_28 AC 4 ms
11,636 KB
testcase_29 AC 3 ms
11,732 KB
testcase_30 AC 4 ms
11,808 KB
testcase_31 AC 3 ms
11,740 KB
testcase_32 AC 4 ms
11,788 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 AC 4 ms
11,796 KB
testcase_35 AC 3 ms
11,692 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 504 ms
77,272 KB
testcase_38 AC 577 ms
77,188 KB
testcase_39 AC 654 ms
77,300 KB
testcase_40 AC 700 ms
77,252 KB
testcase_41 AC 695 ms
77,304 KB
testcase_42 AC 724 ms
77,336 KB
testcase_43 AC 1 ms
6,944 KB
testcase_44 AC 279 ms
48,628 KB
testcase_45 AC 471 ms
60,784 KB
testcase_46 AC 73 ms
11,764 KB
testcase_47 AC 161 ms
28,040 KB
testcase_48 AC 914 ms
77,280 KB
testcase_49 AC 399 ms
48,556 KB
testcase_50 AC 2 ms
6,944 KB
testcase_51 AC 965 ms
77,168 KB
testcase_52 AC 1,020 ms
77,328 KB
testcase_53 AC 997 ms
77,148 KB
testcase_54 AC 949 ms
77,304 KB
testcase_55 AC 1,009 ms
77,144 KB
testcase_56 AC 966 ms
77,256 KB
権限があれば一括ダウンロードができます

ソースコード

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]={};
    map<ll, ll> mp;
    for(int i=0; i<(1<<n); i++){
        for(int j=0; j<n; j++){
            if(i&(1<<j)) s[i]+=a[j];
        }
        mp[s[i]]++;
    }
    ll ans=0;
    for(auto p:mp){
        if(mp.find(p.first+k)==mp.end()) continue;
        ans+=p.second*mp[p.first+k];
    }
    for(int i=0; i<(1<<n); i++){
        if(s[i]==k){
            int p=popcount(i);
            ans-=(1ll<<(n-p));
        }
        if(i && s[i]==-k){
            int p=popcount(i);
            ans-=(1ll<<(n-p));
        }
    }
    if(ans) cout<<"Yes"<<endl;
    else cout<<"No"<<endl;
    return 0;
}
0