結果

問題 No.1456 Range Xor
ユーザー T101010101T101010101
提出日時 2023-02-28 11:23:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 3,490 bytes
コンパイル時間 3,890 ms
コンパイル使用メモリ 268,516 KB
実行使用メモリ 14,340 KB
最終ジャッジ日時 2023-10-13 17:48:35
合計ジャッジ時間 9,692 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 1 ms
4,348 KB
testcase_03 AC 57 ms
14,052 KB
testcase_04 AC 57 ms
14,052 KB
testcase_05 AC 55 ms
14,104 KB
testcase_06 AC 58 ms
14,340 KB
testcase_07 AC 59 ms
14,192 KB
testcase_08 AC 59 ms
14,108 KB
testcase_09 AC 57 ms
14,152 KB
testcase_10 AC 55 ms
14,052 KB
testcase_11 AC 8 ms
4,784 KB
testcase_12 AC 5 ms
4,348 KB
testcase_13 AC 16 ms
6,324 KB
testcase_14 AC 16 ms
6,236 KB
testcase_15 AC 38 ms
10,860 KB
testcase_16 AC 37 ms
10,324 KB
testcase_17 AC 20 ms
7,152 KB
testcase_18 AC 15 ms
6,272 KB
testcase_19 AC 31 ms
9,352 KB
testcase_20 AC 39 ms
10,152 KB
testcase_21 AC 32 ms
9,216 KB
testcase_22 AC 34 ms
9,164 KB
testcase_23 AC 18 ms
6,424 KB
testcase_24 AC 8 ms
4,520 KB
testcase_25 AC 14 ms
5,920 KB
testcase_26 AC 25 ms
8,524 KB
testcase_27 AC 33 ms
9,956 KB
testcase_28 AC 13 ms
5,960 KB
testcase_29 AC 52 ms
14,136 KB
testcase_30 AC 55 ms
13,996 KB
testcase_31 AC 12 ms
5,888 KB
testcase_32 AC 9 ms
4,812 KB
testcase_33 AC 18 ms
6,732 KB
testcase_34 AC 54 ms
13,920 KB
testcase_35 AC 25 ms
8,684 KB
testcase_36 AC 54 ms
14,028 KB
testcase_37 AC 41 ms
11,152 KB
testcase_38 AC 8 ms
4,756 KB
testcase_39 AC 36 ms
10,012 KB
testcase_40 AC 35 ms
9,992 KB
testcase_41 AC 2 ms
4,352 KB
testcase_42 AC 5 ms
4,352 KB
testcase_43 AC 1 ms
4,348 KB
testcase_44 AC 1 ms
4,352 KB
testcase_45 AC 1 ms
4,352 KB
testcase_46 AC 2 ms
4,348 KB
testcase_47 AC 2 ms
4,352 KB
testcase_48 AC 1 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma region Macros

// #pragma GCC target("avx,avx2,fma")
// #pragma GCC optimize("O3")
// #pragma GCC optimize("unroll-loops")
// #pragma GCC target("avx,avx2,fma,sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,tune=native")

#include <bits/extc++.h>
// #include <bits/stdc++.h>
using namespace std;
using namespace __gnu_pbds;
// using namespace __gnu_cxx;
// #include <atcoder/fenwicktree>
// #include <atcoder/segtree>
// #include <atcoder/maxflow>
// using namespace atcoder;

// #include <boost/multiprecision/cpp_int.hpp>
// namespace mp = boost::multiprecision;
// using Bint = mp::cpp_int;

#define TO_STRING(var) # var
#define pb emplace_back
#define int ll
#define endl '\n'

using ll = long long;
using ld = long double;
const ld PI = acos(-1);
const ld EPS = 1e-10;
const ll INFL = 1LL << 61;
const int MOD = 998244353;
// const int MOD = 1000000007;

__attribute__((constructor))
void constructor() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout << fixed << setprecision(15);
}

template<int mod> class modint{
public:
    int val = 0;
    modint(int x = 0) { while (x < 0) x += mod; val = x % mod; }
    modint(const modint &r) { val = r.val; } // コピーコンストラクタ

    modint operator -(){ return modint(-val); } // 単項
    modint operator +(const modint &r) { return modint(*this) += r; }
    modint operator -(const modint &r) { return modint(*this) -= r; }
    modint operator *(const modint &r) { return modint(*this) *= r; }
    modint operator /(const modint &r) { return modint(*this) /= r; }

    modint &operator +=(const modint &r) {
        val += r.val;
        if (val >= mod) val -= mod;
        return *this;
    }
    modint &operator -=(const modint &r) {
        if (val < r.val) val += mod;
        val -= r.val;
        return *this;
    }
    modint &operator *=(const modint &r) {
        val = val * r.val % mod;
        return *this;
    }
    modint &operator /=(const modint &r) {
        int a = r.val, b = mod, u = 1, v = 0;
        while (b) {
            int t = a / b;
            a -= t * b; swap(a, b);
            u -= t * v; swap(u, v);
        }
        val = val * u % mod;
        if (val < 0) val += mod;
        return *this;
    }

    bool operator ==(const modint& r) { return this -> val == r.val; }
    bool operator <(const modint& r) { return this -> val < r.val; }
    bool operator !=(const modint& r) { return this -> val != r.val; }
};

using mint = modint<MOD>;

istream &operator >>(istream &is, mint& x) {
    int t; is >> t;
    x = t;
    return (is);
}
ostream &operator <<(ostream &os, const mint& x) {
    return os << x.val;
}

mint modpow(const mint &a, int n) {
    if (n == 0) return 1;
    mint t = modpow(a, n / 2);
    t = t * t;
    if (n & 1) t = t * a;
    return t;
}

int modpow(int x, int N, int mod) {
    int ret = 1;
    while (N > 0) {
        if (N % 2 == 1) ret = ret * x % mod;
        x = x * x % mod;
        N /= 2;
    }
    return ret;
}

int ceil(int x, int y) { return (x > 0 ? (x + y - 1) / y : x / y); }

#pragma endregion

signed main() {
    int N, K;
    cin >> N >> K;
    vector<int> A(N);
    for (int i = 0; i < N; i++) cin >> A[i];

    vector<int> sum(N + 1);
    unordered_map<int,int> mp;
    for (int i = 0; i < N; i++) {
        sum[i + 1] = sum[i] ^ A[i];
    }
    int ans = 0;
    for (int i = 0; i <= N; i++) {
        ans += mp[K ^ sum[i]];
        mp[sum[i]]++;
    }
    if (ans) cout << "Yes" << endl;
    else cout << "No" << endl;
}
0