結果

問題 No.2672 Subset Xor Sum
ユーザー anago-pieanago-pie
提出日時 2024-12-03 20:35:03
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 4,887 bytes
コンパイル時間 3,221 ms
コンパイル使用メモリ 257,492 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-03 20:35:12
合計ジャッジ時間 8,124 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 3 ms
5,248 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 3 ms
5,248 KB
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 4 ms
5,248 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 4 ms
5,248 KB
testcase_29 AC 4 ms
5,248 KB
testcase_30 AC 3 ms
5,248 KB
testcase_31 AC 111 ms
5,248 KB
testcase_32 AC 46 ms
5,248 KB
testcase_33 AC 38 ms
5,248 KB
testcase_34 AC 78 ms
5,248 KB
testcase_35 AC 107 ms
5,248 KB
testcase_36 AC 89 ms
5,248 KB
testcase_37 AC 103 ms
5,248 KB
testcase_38 AC 52 ms
5,248 KB
testcase_39 AC 121 ms
5,248 KB
testcase_40 AC 22 ms
5,248 KB
testcase_41 AC 70 ms
5,248 KB
testcase_42 AC 104 ms
5,248 KB
testcase_43 AC 82 ms
5,248 KB
testcase_44 AC 121 ms
5,248 KB
testcase_45 AC 77 ms
5,248 KB
testcase_46 AC 4 ms
5,248 KB
testcase_47 AC 5 ms
5,248 KB
testcase_48 AC 3 ms
5,248 KB
testcase_49 AC 3 ms
5,248 KB
testcase_50 AC 3 ms
5,248 KB
testcase_51 AC 3 ms
5,248 KB
testcase_52 AC 4 ms
5,248 KB
testcase_53 AC 5 ms
5,248 KB
testcase_54 AC 4 ms
5,248 KB
testcase_55 AC 4 ms
5,248 KB
testcase_56 AC 3 ms
5,248 KB
testcase_57 AC 3 ms
5,248 KB
testcase_58 AC 2 ms
5,248 KB
testcase_59 AC 2 ms
5,248 KB
testcase_60 AC 2 ms
5,248 KB
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 4 ms
5,248 KB
testcase_63 AC 3 ms
5,248 KB
testcase_64 AC 5 ms
5,248 KB
testcase_65 AC 4 ms
5,248 KB
testcase_66 AC 2 ms
5,248 KB
testcase_67 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for(int i=0; i<n; i++)
#define debug 0
#define YES cout << "Yes" << endl;
#define NO cout << "No" << endl;
using ll = long long;
using ld = long double;
const int mod = 998244353;
const int MOD = 1000000007;
const double pi = atan2(0, -1);
const int inf = 1 << 31 - 1;
const ll INF = 1LL << 63 - 1;
#include <time.h>
#include <chrono>

//vectorの中身を空白区切りで出力
template<typename T>
void printv(vector<T> v) {
	for (int i = 0; i < v.size(); i++) {
		cout << v[i];
		if (i < v.size() - 1) {
			cout << " ";
		}
	}
	cout << endl;
}

//vectorの中身を改行区切りで出力
template<typename T>
void print1(vector<T> v) {
	for (auto x : v) {
		cout << x << endl;
	}
}

//二次元配列を出力
template<typename T>
void printvv(vector<vector<T>> vv) {
	for (vector<T> v : vv) {
		printv(v);
	}
}

//vectorを降順にソート
template<typename T>
void rsort(vector<T>& v) {
	sort(v.begin(), v.end());
	reverse(v.begin(), v.end());
}

//昇順priority_queueを召喚
template<typename T>
struct rpriority_queue {
	priority_queue<T, vector<T>, greater<T>> pq;

	void push(T x) {
		pq.push(x);
	}

	void pop() {
		pq.pop();
	}

	T top() {
		return pq.top();
	}

	size_t size() {
		return pq.size();
	}

	bool empty() {
		return pq.empty();
	}
};

//mod mod下で逆元を算出する
//高速a^n計算(mod ver.)
ll power(ll a, ll n) {
	if (n == 0) {
		return 1;
	}
	else if (n % 2 == 0) {
		ll x = power(a, n / 2);
		x *= x;
		x %= mod;
		return x;
	}
	else {
		ll x = power(a, n - 1);
		x *= a;
		x %= mod;
		return x;
	}
}
//フェルマーの小定理を利用
ll modinv(ll p) {
	return power(p, mod - 2) % mod;
}

//Mexを求める
struct Mex {
	map<int, int> mp;
	set<int> s;
	Mex(int Max) {
		for (int i = 0; i <= Max; i++) {
			s.insert(i);
		}
	}

	int _mex = 0;
	void Input(int x) {
		mp[x]++;
		s.erase(x);
		if (_mex == x) {
			_mex = *begin(s);
		}
	}

	void Remove(int x) {
		if (mp[x] == 0) {
			cout << "Mex ERROR!: NO VALUE WILL BE REMOVED" << endl;
		}
		mp[x]--;
		if (mp[x] == 0) {
			s.insert(x);
			if (*begin(s) == x) {
				_mex = x;
			}
		}
	}

	int mex() {
		return _mex;
	}
};

//条件分岐でYes/Noを出力するタイプのやつ
void YN(bool true_or_false) {
	cout << (true_or_false ? "Yes" : "No") << endl;
}

//Union-Find
struct UnionFind {
	vector<int> par;
	UnionFind(int N) : par(N) {
		for (int i = 0; i < N; i++) {
			par[i] = -1;
		}
	}

	//root(x):xの根を求める関数
	int root(int x) {
		if (par[x] == -1) {
			return x;
		}
		else {
			return par[x] = root(par[x]);
		}
	}

	//isSame(x,y):xとyが同じグループならtrueを返す関数
	bool isSame(int x, int y) {
		if (root(x) == root(y)) {
			return true;
		}
		else {
			return false;
		}
	}

	//Union(x,y):xとyの根をつなげる関数
	void Union(int x, int y) {
		int X = root(x);
		int Y = root(y);
		if (X == Y) {
			return;
		}
		if (X < Y) {
			swap(X, Y);
		}
		par[X] = Y;
	}
};

//最大公約数(ユークリッドの互除法)
ll gcd(ll a, ll b) {
	if (b > a) {
		swap(a, b);
	}
	while (a % b != 0) {
		ll t = a;
		a = b;
		b = t % b;
	}
	return b;
}

//最小公倍数(gcdを定義しておく)
ll lcm(ll a, ll b) {
	ll g = gcd(a, b);
	ll x = (a / g) * b;
	return x;
}

struct SegTree {
	vector<int> tree;
	vector<int> lazy;
	int n = 1;
	SegTree(int N, int H) {
		while (n < N) {
			n *= 2;
		}
		vector<int> v(n * 2, H+1);
		swap(tree, v);
		vector<int> u(n * 2, 200005);
		swap(lazy, u);
	}

	void update(int val, int l, int r, int u, int t, int now) {
		if (l >= t || r <= u) {
			return;
		}
		else if (l <= u && r >= t) {
			lazy[now] = min(lazy[now], val);
		}
		else {
			tree[now] = min(tree[now], val);
			update(val, l, r, u, (u + t) / 2, now * 2 + 1);
			update(val, l, r, (u + t) / 2, t, now * 2 + 2);
		}
	}
	void treeup(int now, int val) {
		if (tree[now] > val) {
			tree[now] = val;
			if (now > 0) {
				treeup((now - 1) / 2, val);
			}
		}
	}

	int Min(int l, int r, int u, int t, int now) {
		if (l >= t || r <= u) {
			return inf;
		}
		else if (l <= u && r >= t) {
			treeup(now, lazy[now]);
			return tree[now];
		}
		else {
			treeup(now, lazy[now]);
			lazy[now * 2 + 1] = min(lazy[now * 2 + 1], lazy[now]);
			lazy[now * 2 + 2] = min(lazy[now * 2 + 2], lazy[now]);
			return min(Min(l, r, u, (u + t) / 2, now * 2 + 1), Min(l, r, (u + t) / 2, t, now * 2 + 2));
		}
	}

	int query(int l, int r) {
		return Min(l, r, 0, n, 0);
	}
};

int main(){
	int N;
	cin >> N;
	vector<int> A(N);
	int x= 0;
	rep(i, N) {
		cin >> A[i];
		x ^= A[i];
	}
	if (x != 0) {
		NO;
	}
	else if (A[N - 1] == 0) {
		YES;
	}
	else {
		set<int> s;
		rep(i, N - 1) {
			vector<int> v = {A[i]};
			for (int x : s) {
				v.push_back(x ^ A[i]);
			}
			for (int x : v) {
				if (s.count(x)) {
					YES;
					return 0;
				}
				else {
					s.insert(x);
				}
			}
		}
		NO;
	}
}

0