結果

問題 No.2672 Subset Xor Sum
ユーザー Hydrogen332Hydrogen332
提出日時 2024-11-12 09:15:50
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 764 bytes
コンパイル時間 3,284 ms
コンパイル使用メモリ 248,860 KB
実行使用メモリ 163,456 KB
最終ジャッジ日時 2024-11-12 09:16:01
合計ジャッジ時間 9,754 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 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 2 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 3 ms
5,248 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 3 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 3 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 3 ms
5,248 KB
testcase_25 AC 3 ms
5,248 KB
testcase_26 AC 8 ms
8,064 KB
testcase_27 AC 8 ms
8,192 KB
testcase_28 AC 3 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 3 ms
5,248 KB
testcase_31 AC 100 ms
5,248 KB
testcase_32 AC 41 ms
5,248 KB
testcase_33 AC 35 ms
5,248 KB
testcase_34 AC 71 ms
5,248 KB
testcase_35 AC 99 ms
5,248 KB
testcase_36 AC 81 ms
5,248 KB
testcase_37 AC 92 ms
5,248 KB
testcase_38 AC 47 ms
5,248 KB
testcase_39 AC 109 ms
5,248 KB
testcase_40 AC 20 ms
5,248 KB
testcase_41 AC 62 ms
5,248 KB
testcase_42 AC 95 ms
5,248 KB
testcase_43 AC 74 ms
5,248 KB
testcase_44 AC 111 ms
5,248 KB
testcase_45 AC 70 ms
5,248 KB
testcase_46 AC 3 ms
5,248 KB
testcase_47 AC 180 ms
163,200 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 208 ms
163,456 KB
testcase_52 AC 180 ms
163,328 KB
testcase_53 AC 179 ms
163,200 KB
testcase_54 AC 178 ms
163,200 KB
testcase_55 AC 178 ms
163,200 KB
testcase_56 AC 3 ms
5,248 KB
testcase_57 AC 126 ms
113,792 KB
testcase_58 AC 44 ms
41,344 KB
testcase_59 AC 3 ms
5,248 KB
testcase_60 AC 2 ms
5,248 KB
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 78 ms
71,552 KB
testcase_63 AC 110 ms
87,040 KB
testcase_64 AC 148 ms
134,656 KB
testcase_65 AC 44 ms
41,856 KB
testcase_66 AC 3 ms
5,248 KB
testcase_67 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, e) for (int i = (int)s; i < (int)e; ++i)
#define all(a) (a).begin(), (a).end()

int main() {
    cin.tie(nullptr);
    
    int N;
    cin >> N;
    vector<int> A(N);
    rep(i, 0, N) cin >> A[i];
    
    int sum = 0;
    rep(i, 0, N) sum ^= A[i];
    
    if (sum != 0) {
        cout << "No\n";
        return 0;
    } else if (N >= 5002) {
        cout << "Yes\n";
        return 0;
    }
    
    vector dp(N, vector<int>(1 << 13, 1 << 20));
    dp[0][A[0]] = 1;
    rep(i, 1, N) rep(j, 0, 1 << 13) {
        dp[i][j] = dp[i - 1][j];
        dp[i][j] = min(dp[i][j], dp[i - 1][j ^ A[i]] + 1);
    }
    
    if (dp[N - 1][0] < N) cout << "Yes\n";
    else cout << "No\n";
}
0