結果
問題 | No.2672 Subset Xor Sum |
ユーザー |
![]() |
提出日時 | 2024-03-15 21:48:23 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,170 bytes |
コンパイル時間 | 2,354 ms |
コンパイル使用メモリ | 209,508 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-09-30 00:50:07 |
合計ジャッジ時間 | 25,900 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 60 TLE * 6 |
ソースコード
#include <bits/stdc++.h>#ifdef LOCAL#include "./debug.cpp"#else#define debug(...)#define print_line#endifusing namespace std;using ll = long long;int main() {int N;cin >> N;vector<int> A(N);for (int i = 0; i < N; i++) {cin >> A[i];}int xors = 0;for (int i = 0; i < N; i++) {xors ^= A[i];}if (xors != 0) {cout << "No" << endl;return 0;}if (N > 5000) {cout << "Yes" << endl;return 0;}int mx = 1 << 13;vector<vector<bool>> dp(mx + 1, vector<bool>(2, false));dp[A[0]][1] = true;for (int i = 0; i < N - 1; i++) {vector<vector<bool>> ndp(mx + 1, vector<bool>(2, false));for (int j = 0; j <= mx; j++) {for (int k = 0; k < 2; k++) {if (dp[j][k]) {ndp[j][0] = true;if ((j ^ A[i + 1]) <= mx) {ndp[j ^ A[i + 1]][k] = true;}}}}swap(dp, ndp);}if (dp[0][0]) {cout << "Yes" << endl;} else {cout << "No" << endl;}}