結果

問題 No.1456 Range Xor
ユーザー ooooobaoooooba
提出日時 2021-09-05 23:06:44
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 763 bytes
コンパイル時間 4,460 ms
コンパイル使用メモリ 153,344 KB
最終ジャッジ日時 2025-01-24 08:25:44
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 46
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <array>
#include <cmath>
#include <cstdio>
#include <deque>
#include <iomanip>
#include <iostream>
#include <numeric>
#include <optional>
#include <queue>
#include <set>
#include <stack>
#include <unordered_map>
#include <unordered_set>
#include <vector>

using namespace std; // NOLINT

int main() {
    int32_t n;
    uint32_t k;
    cin >> n >> k;
    vector<uint32_t> as(n);
    for (auto &&a : as) {
        cin >> a;
    }
    uint32_t s = 0;
    unordered_set<uint32_t> st;
    st.insert(0);
    for (auto i = 0; i < n; ++i) {
        s ^= as[i];
        if (st.find(s ^ k) != st.end()) {
            cout << "Yes" << endl;
            return 0;
        }
        st.insert(s);
    }
    cout << "No" << endl;
    return 0;
}
0