結果
問題 | No.2672 Subset Xor Sum |
ユーザー | GOTKAKO |
提出日時 | 2024-03-15 21:37:38 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 91 ms / 2,000 ms |
コード長 | 657 bytes |
コンパイル時間 | 2,224 ms |
コンパイル使用メモリ | 204,016 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-09-30 04:14:57 |
合計ジャッジ時間 | 5,334 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 66 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int N; cin >> N; int Xor = 0; vector<int> A(N); for(auto &a : A) cin >> a,Xor ^= a; if(Xor){cout << "No" << endl; return 0;} if(N >= 5001){cout << "Yes" << endl; return 0;} bool yes = false; bitset<8192> ok; for(int i=0; i<N; i++){ int a = A.at(i); if(ok.test(a) && i != N-1) yes = true; bitset<8192> ok2; for(int k=0; k<=8191; k++) if(ok.test(k)) ok2.set(k^a); ok |= ok2; ok.set(a); } if(yes) cout << "Yes" << endl; else cout << "No" << endl; }