結果

問題 No.1456 Range Xor
ユーザー cutmdocutmdo
提出日時 2022-08-31 03:48:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 2,240 bytes
コンパイル時間 1,008 ms
コンパイル使用メモリ 94,928 KB
実行使用メモリ 9,704 KB
最終ジャッジ日時 2024-04-25 09:44:59
合計ジャッジ時間 3,831 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 61 ms
9,572 KB
testcase_04 AC 61 ms
9,580 KB
testcase_05 AC 60 ms
9,580 KB
testcase_06 AC 60 ms
9,444 KB
testcase_07 AC 63 ms
9,704 KB
testcase_08 AC 58 ms
9,448 KB
testcase_09 AC 59 ms
9,572 KB
testcase_10 AC 59 ms
9,576 KB
testcase_11 AC 12 ms
5,376 KB
testcase_12 AC 6 ms
5,376 KB
testcase_13 AC 19 ms
5,376 KB
testcase_14 AC 18 ms
5,376 KB
testcase_15 AC 48 ms
7,876 KB
testcase_16 AC 43 ms
7,392 KB
testcase_17 AC 28 ms
6,492 KB
testcase_18 AC 18 ms
5,376 KB
testcase_19 AC 36 ms
7,044 KB
testcase_20 AC 43 ms
7,392 KB
testcase_21 AC 35 ms
6,760 KB
testcase_22 AC 37 ms
6,808 KB
testcase_23 AC 21 ms
5,376 KB
testcase_24 AC 10 ms
5,376 KB
testcase_25 AC 17 ms
5,376 KB
testcase_26 AC 30 ms
6,448 KB
testcase_27 AC 39 ms
7,028 KB
testcase_28 AC 16 ms
5,376 KB
testcase_29 AC 57 ms
9,272 KB
testcase_30 AC 56 ms
9,496 KB
testcase_31 AC 15 ms
5,376 KB
testcase_32 AC 12 ms
5,376 KB
testcase_33 AC 23 ms
5,412 KB
testcase_34 AC 57 ms
9,348 KB
testcase_35 AC 29 ms
6,484 KB
testcase_36 AC 56 ms
9,412 KB
testcase_37 AC 55 ms
8,064 KB
testcase_38 AC 11 ms
5,376 KB
testcase_39 AC 42 ms
7,216 KB
testcase_40 AC 44 ms
7,332 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 8 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 1 ms
5,376 KB
testcase_47 AC 1 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <unordered_set>
#include <vector>
#include <algorithm>

template<
    class S,   // 要素の型
    S element, // 元
    class T, // 2項演算子
    class U // 逆元
>
struct Group {
    S m_val;
    Group() :m_val(element) {}
    Group(S val) :m_val(val) {}
    Group inverse()const { return U()(m_val); }
    Group binaryOperation(const Group& g)const { return T()(m_val, g.m_val); }
};

template<class P> struct F_A_Inv { auto operator()(P x)const { return -x; } };
template<class P> struct F_A_Bin { auto operator()(P x, P y)const { return x + y; } };
template<class P> using AdditiveGroup = Group<P, P(0), F_A_Bin<P>, F_A_Inv<P>>;

template <class Group = AdditiveGroup<long long>>
class Accumulation {
    using S = decltype(Group().m_val);

    const int size;
    std::vector<Group> sumList;
public:

    Accumulation() = delete;
    Accumulation(const std::vector<Group>& v) :size(v.size()), sumList(size + 1) {
        for(int i = 0; i < size; ++i) {
            sumList[i + 1] = sumList[i].binaryOperation(v[i]);
        }
    }
    Accumulation(const std::vector<S>& v)
        :Accumulation(std::vector<Group>(v.begin(), v.end())) {
    }

    auto get(int n) {
        return sumList[n + 1].m_val;
    }
    auto get(int l, int r) {
        if(r < l) { return Group().m_val; }
        l = std::max(l, 0); r = std::min(r, size - 1);
        return sumList[r + 1].binaryOperation(sumList[l].inverse()).m_val;
    }
};

using ll = long long;
using std::cout;
using std::cin;
constexpr char endl = '\n';

struct F_inv { auto operator()(ll x) { return x; } };
struct F_xor { auto operator()(ll x, ll y) { return x ^ y; } };
using G = Group<ll, 0, F_xor, F_inv>;

signed main() {
    ll n, k;
    cin >> n >> k;

    std::vector<ll> a; a.reserve(n);
    for(int _ = 0; _ < n; ++_) {
        ll x; cin >> x;
        a.emplace_back(x);
    }

    auto acc = Accumulation<G>(a);
    std::unordered_set<ll> st;
    for(int i = 0; i < n; ++i) {
        st.emplace(acc.get(i) ^ k);
    }

    if(st.find(0) != st.end()) { cout << "Yes" << endl; return 0; }
    for(int i = 0; i < n; ++i) {
        if(st.find(acc.get(i)) != st.end()) { cout << "Yes" << endl; return 0; }
    }
    cout << "No" << endl;
}
0