結果
問題 | No.1538 引きこもりさんは引き算が得意。 |
ユーザー | hiro71687k |
提出日時 | 2023-03-30 20:30:43 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,739 bytes |
コンパイル時間 | 4,384 ms |
コンパイル使用メモリ | 275,364 KB |
実行使用メモリ | 17,792 KB |
最終ジャッジ日時 | 2024-09-22 06:13:43 |
合計ジャッジ時間 | 7,225 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,812 KB |
testcase_02 | AC | 2 ms
6,812 KB |
testcase_03 | AC | 3 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 3 ms
6,944 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 26 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 1 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 2 ms
6,944 KB |
testcase_24 | AC | 2 ms
6,944 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 2 ms
6,944 KB |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | AC | 2 ms
6,940 KB |
testcase_29 | AC | 2 ms
6,944 KB |
testcase_30 | AC | 2 ms
6,940 KB |
testcase_31 | AC | 2 ms
6,944 KB |
testcase_32 | AC | 2 ms
6,940 KB |
testcase_33 | AC | 2 ms
6,940 KB |
testcase_34 | AC | 2 ms
6,940 KB |
testcase_35 | AC | 2 ms
6,944 KB |
testcase_36 | AC | 2 ms
6,940 KB |
testcase_37 | AC | 52 ms
6,940 KB |
testcase_38 | AC | 51 ms
6,940 KB |
testcase_39 | AC | 52 ms
6,944 KB |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 52 ms
6,940 KB |
testcase_43 | AC | 51 ms
6,940 KB |
testcase_44 | AC | 51 ms
6,944 KB |
testcase_45 | AC | 52 ms
6,940 KB |
testcase_46 | AC | 48 ms
6,944 KB |
testcase_47 | AC | 49 ms
7,936 KB |
testcase_48 | AC | 97 ms
13,056 KB |
testcase_49 | AC | 51 ms
6,940 KB |
testcase_50 | WA | - |
testcase_51 | AC | 119 ms
17,664 KB |
testcase_52 | AC | 100 ms
13,312 KB |
testcase_53 | AC | 102 ms
13,824 KB |
testcase_54 | AC | 121 ms
17,664 KB |
testcase_55 | AC | 103 ms
13,824 KB |
testcase_56 | AC | 122 ms
17,792 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll=long long; using ld=long double; ld pie=3.141592653589793; ll mod=1000000007; ll inf=9999999999999999; int main(){ ll n,k; cin >> n >> k; vector<ll>a(n); for (ll i = 0; i < n; i++) { cin >> a[i]; } sort(a.begin(),a.end()); vector<ll>thr(21,1); for (ll i = 1; i < 21; i++) { thr[i]=thr[i-1]*3; } if (n>10) { map<ll,ll>memo1; ll d=n-10; for (ll i = 0; i < thr[10]; i++) { ll now=0; vector<ll>z(3,0); for (ll j = 0; j <10 ; j++) { ll x=i%thr[j+1]; x/=thr[j]; if (x==0) { now+=a[j]; }else if (x==1) { now-=a[j]; } z[x]+=1; } if (z[0]==0||z[1]==0) { continue; } memo1[now]+=1; } map<ll,ll>memo2; for (ll i = 0; i < thr[d]; i++) { ll now=0; vector<ll>z(3,0); for (ll j = 0; j <d ; j++) { ll x=i%thr[j+1]; x/=thr[j]; if (x==0) { now+=a[j+10]; }else if (x==1) { now-=a[j+10]; } z[x]+=1; } if (z[0]==0||z[1]==0) { continue; } memo2[now]+=1; } for(auto v:memo1){ if (v.first==k) { cout << "Yes" << endl; return 0; } if (memo2[k+v.first]>=1||memo2[v.first-k]>=1) { cout << "Yes" << endl; return 0; } } cout << "No" << endl; }else{ map<ll,ll>memo1; for (ll i = 0; i < thr[n]; i++) { ll now=0; vector<ll>z(3,0); for (ll j = 0; j <n ; j++) { ll x=i%thr[j+1]; x/=thr[j]; if (x==0) { now+=a[j]; }else if (x==1) { now-=a[j]; } z[x]+=1; } if (z[0]==0||z[1]==0) { continue; } memo1[now]+=1; } if (memo1[k]>=1) { cout << "Yes" << endl; }else{ cout << "No" << endl; } } }