結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー inksamuraiinksamurai
提出日時 2021-06-07 01:50:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,928 bytes
コンパイル時間 1,199 ms
コンパイル使用メモリ 117,320 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-05-03 03:17:10
合計ジャッジ時間 3,064 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <cmath>
#include <deque>
#include <algorithm>
#include <iterator>
#include <list>
#include <tuple>
#include <map>
#include <unordered_map>
#include <queue>
#include <set>
#include <unordered_set>
#include <stack>
#include <string>
#include <vector>
#include <fstream>
#include <iostream>
#include <functional>
#include <numeric>
#include <iomanip> 
#include <stdio.h>
//eolibraries
#define lnf 3999999999999999999
#define inf 999999999
#define PI 3.14159265359
#define endl "\n"
#define fi first
#define se second
#define pb push_back
#define eb emplace_back
#define ll long long
#define all(c) (c).begin(),(c).end()
#define sz(c) (ll)(c).size()
#define mkp(a,b) make_pair(a,b)
#define make_unique(a) sort(all(a)),a.erase(unique(all(a)),a.end())
#define rsz(a,n) a.resize(n)
#define pii pair <ll,ll>
#define rep(i,n) for(ll i = 0 ; i < n ; i++) 
#define drep(i,n) for(ll i = n-1 ; i >= 0 ; i--)
#define crep(i,x,n) for(ll i = x ; i < n ; i++)
#define vi vector <ll> 
#define vec(...) vector<__VA_ARGS__>
#define rsz(a,n) a.resize(n)
#define rszv(a,n,v) a.resize(n,v)
#define fcin ios_base::sync_with_stdio(false),cin.tie(0),cout.tie(0);
//eodefine
using namespace std;

const ll max_n = 103002;

ll n,k;
vi a;

int main(){
fcin;
	cin>>n>>k;	
	rep(i,n) { ll x; cin>>x; a.pb(x); }

	function < set<ll>(ll,ll)> odo = [&](ll l,ll r) {
		set <ll> st;

		crep(i,l,r) {
			set <ll> nest = st;
			
			for(auto x : st) {
				nest.insert(x-a[i]);
				nest.insert(x+a[i]);
			}
			
			nest.insert(-a[i]);
			nest.insert(a[i]);
			st = nest;
		}

		return st;
 	};

 	set <ll> sta,stb;
 	sta = odo(0,(n+1)/2);
 	stb = odo((n+1)/2,n);
	
	function<void()> yp = [&]() {
		cout<<"Yes\n";
		exit(0);	
		return;
	};
	
	for(auto x : stb) {
		// cout<<x<<"\n";
		if(sta.find(x+k)!=sta.end()) yp();
		if(sta.find(x-k)!=sta.end()) yp();
		// if(x==k) yp();
	}
	
	// if(sta.find(k)!=sta.end()) yp();

	cout<<"No\n";
/*
*/
 
    return 0;   
}
0