結果
問題 | No.2672 Subset Xor Sum |
ユーザー | mono |
提出日時 | 2024-03-15 21:45:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,292 bytes |
コンパイル時間 | 1,843 ms |
コンパイル使用メモリ | 179,168 KB |
実行使用メモリ | 13,900 KB |
最終ジャッジ日時 | 2024-09-30 00:40:25 |
合計ジャッジ時間 | 6,312 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,640 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 6 ms
6,820 KB |
testcase_03 | AC | 3 ms
6,816 KB |
testcase_04 | AC | 3 ms
6,816 KB |
testcase_05 | AC | 4 ms
6,820 KB |
testcase_06 | AC | 4 ms
6,820 KB |
testcase_07 | AC | 3 ms
6,820 KB |
testcase_08 | AC | 3 ms
6,816 KB |
testcase_09 | AC | 4 ms
6,816 KB |
testcase_10 | AC | 4 ms
6,816 KB |
testcase_11 | AC | 4 ms
6,816 KB |
testcase_12 | AC | 4 ms
6,820 KB |
testcase_13 | AC | 3 ms
6,816 KB |
testcase_14 | AC | 3 ms
6,820 KB |
testcase_15 | AC | 3 ms
6,816 KB |
testcase_16 | AC | 4 ms
6,816 KB |
testcase_17 | AC | 3 ms
6,820 KB |
testcase_18 | AC | 3 ms
6,816 KB |
testcase_19 | AC | 4 ms
6,820 KB |
testcase_20 | AC | 3 ms
6,816 KB |
testcase_21 | AC | 3 ms
6,816 KB |
testcase_22 | AC | 3 ms
6,820 KB |
testcase_23 | AC | 4 ms
6,816 KB |
testcase_24 | AC | 3 ms
6,816 KB |
testcase_25 | AC | 2 ms
6,816 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 6 ms
6,816 KB |
testcase_29 | AC | 6 ms
6,820 KB |
testcase_30 | AC | 3 ms
6,816 KB |
testcase_31 | TLE | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
testcase_65 | -- | - |
testcase_66 | -- | - |
testcase_67 | -- | - |
ソースコード
#include <bits/stdc++.h> #include <unordered_map> #include <stdlib.h> using namespace std; #define rep(i, a, n) for(ll i = a; i < n; i++) #define rrep(i, a, n) for(ll i = a; i >= n; i--) #define ll long long #define pii pair<int, int> #define pll pair<ll, ll> //constexpr ll MOD = 1000000007; constexpr ll MOD = 998244353; constexpr int IINF = 1001001001; constexpr ll INF = 1LL<<60; template<class t,class u> void chmax(t&a,u b){if(a<b)a=b;} template<class t,class u> void chmin(t&a,u b){if(b<a)a=b;} template <ll MOD> class modint { ll val; static vector<modint<MOD>> factorial_vec; public: ll get() const { return (ll)val; } // コンストラクタ modint(ll x = 0){ val = x % MOD; if(val < 0) x += MOD; } // 入出力ストリーム friend constexpr istream &operator>>(istream &is, modint<MOD> &x){ ll y; is >> y; x = y; return is; } friend constexpr ostream &operator<<(ostream &os, const modint<MOD> &x){ return os << x.val; } // 算術演算子 modint<MOD> operator -(){return modint<MOD>(-val);} modint<MOD> operator +(const modint<MOD> &r) const { return modint<MOD>(*this) += r; } modint<MOD> operator -(const modint<MOD> &r) const { return modint<MOD>(*this) -= r; } modint<MOD> operator *(const modint<MOD> &r) const { return modint<MOD>(*this) *= r; } modint<MOD> operator /(const modint<MOD> &r) const { return modint<MOD>(*this) /= r; } // 代入演算子 modint<MOD> &operator +=(const modint<MOD> &r){ val += r.val; if(val >= MOD) val -= MOD; return *this; } modint<MOD> &operator -=(const modint<MOD> &r){ if(val < r.val) val += MOD; val -= r.val; return *this; } modint<MOD> &operator *=(const modint<MOD> &r){ val = val*r.val%MOD; if(val < 0) val += MOD; return *this; } modint<MOD> &operator /=(const modint<MOD> &r){ *this *= inv(r); return *this; } //等価比較演算子 bool operator ==(const modint<MOD>& r){return this -> val == r.val;} bool operator !=(const modint<MOD>& r){return this -> val != r.val;} bool operator <(const modint<MOD>& r){return this -> val < r.val;} bool operator <=(const modint<MOD>& r){return this -> val <= r.val;} bool operator >(const modint<MOD>& r){return this -> val > r.val;} bool operator >=(const modint<MOD>& r){return this -> val >= r.val;} // 累乗 static modint<MOD> modpow(modint<MOD> num, ll exp){ if(!exp) return modint<MOD>(1); // 0乗 modint<MOD> ret(1); modint<MOD> tmp = num; while(exp){ if(exp&1) ret *= tmp; tmp *= tmp; exp >>= 1; } return ret; } // 逆元 static modint<MOD> inv(modint<MOD> num){ return modpow(num, MOD-2); } // 階乗 static modint<MOD> factorial(ll n){ modint<MOD> ret(1); if(n == 0) return ret; if((ll)factorial_vec.size() >= n) return factorial_vec[n-1]; ret = factorial(n-1)*n; factorial_vec.push_back(ret); return ret; } // コンビネーション static modint<MOD> combination(ll n, ll r){ return factorial(n) / factorial(r) / factorial(n-r); } }; using mint = modint<MOD>; template <ll MOD> vector<modint<MOD>> modint<MOD>::factorial_vec; ll gcd(ll a, ll b){ if(a%b == 0){ return b; }else{ return gcd(b, a%b); } } ll lcm(ll a, ll b){ return a*b / gcd(a, b); } ll powMod(ll x, ll n) { if (n == 0) return 1 % MOD; ll val = powMod(x, n / 2); val *= val; val %= MOD; if (n % 2 == 1) val *= x; return val % MOD; } int main() { ll n;cin>>n; vector<ll> a(n); ll _=0; rep(i,0,n){ cin>>a[i]; _^=a[i]; } if(_ != 0){ cout << "No" << endl; return 0; } unordered_map<ll,ll> x; x[0]=1; rep(i,0,n){ unordered_map<ll,ll> y; for(auto j:x){ y[j.first] += j.second; y[j.first^a[i]]+=j.second; } swap(x,y); } //cout<<x[0]<<endl; if(x[0]>=3){ cout << "Yes" << endl; }else{ cout << "No" << endl; } return 0; }