結果

問題 No.1209 XOR Into You
ユーザー MisterMister
提出日時 2020-08-30 16:57:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 3,111 bytes
コンパイル時間 1,650 ms
コンパイル使用メモリ 111,000 KB
実行使用メモリ 24,008 KB
最終ジャッジ日時 2023-08-09 15:30:33
合計ジャッジ時間 10,030 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,384 KB
testcase_02 AC 1 ms
4,384 KB
testcase_03 AC 1 ms
4,384 KB
testcase_04 AC 25 ms
4,512 KB
testcase_05 AC 25 ms
4,608 KB
testcase_06 AC 145 ms
15,472 KB
testcase_07 AC 205 ms
20,668 KB
testcase_08 AC 179 ms
19,036 KB
testcase_09 AC 178 ms
19,164 KB
testcase_10 AC 149 ms
15,612 KB
testcase_11 AC 184 ms
19,040 KB
testcase_12 AC 164 ms
17,976 KB
testcase_13 AC 192 ms
19,932 KB
testcase_14 AC 159 ms
17,596 KB
testcase_15 AC 179 ms
18,248 KB
testcase_16 AC 172 ms
18,032 KB
testcase_17 AC 157 ms
17,676 KB
testcase_18 AC 241 ms
22,992 KB
testcase_19 AC 165 ms
18,108 KB
testcase_20 AC 197 ms
19,816 KB
testcase_21 AC 137 ms
15,384 KB
testcase_22 AC 183 ms
23,940 KB
testcase_23 AC 182 ms
23,772 KB
testcase_24 AC 184 ms
23,988 KB
testcase_25 AC 250 ms
23,884 KB
testcase_26 AC 245 ms
23,780 KB
testcase_27 AC 253 ms
23,804 KB
testcase_28 AC 252 ms
24,008 KB
testcase_29 AC 248 ms
23,832 KB
testcase_30 AC 256 ms
23,832 KB
testcase_31 AC 142 ms
14,740 KB
testcase_32 AC 141 ms
14,600 KB
testcase_33 AC 141 ms
14,664 KB
testcase_34 AC 144 ms
14,776 KB
testcase_35 AC 142 ms
14,564 KB
testcase_36 AC 143 ms
14,720 KB
testcase_37 AC 93 ms
14,428 KB
testcase_38 AC 198 ms
20,704 KB
testcase_39 AC 175 ms
18,760 KB
testcase_40 AC 182 ms
23,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <functional>
#include <cassert>

template <class T>
struct SegmentTree {
    using Merger = std::function<T(T, T)>;

    int length;
    std::vector<T> dat;
    T unit;
    Merger merge;

    SegmentTree() = default;

    SegmentTree(int n, const T& unit, const Merger& merge)
        : length(1), unit(unit), merge(merge) {
        while (length < n) length <<= 1;
        dat.assign(length * 2, unit);
    }

    template <class Container>
    SegmentTree(const Container& elems, const T& unit, const Merger& merge)
        : length(1), unit(unit), merge(merge) {
        int n = elems.size();
        while (length < n) length <<= 1;

        dat.assign(length * 2, unit);

        std::copy(elems.begin(), elems.end(), dat.begin() + length);

        for (int nidx = length - 1; nidx >= 1; --nidx) {
            T vl = dat[nidx * 2 + 0];
            T vr = dat[nidx * 2 + 1];
            dat[nidx] = merge(vl, vr);
        }
    }

    void update(int nidx, const T& elem) {
        nidx += length;
        dat[nidx] = elem;

        while (nidx > 0) {
            nidx >>= 1;
            T vl = dat[nidx * 2 + 0];
            T vr = dat[nidx * 2 + 1];
            dat[nidx] = merge(vl, vr);
        }
    }

    T fold(int ql, int qr) const {
        ql = std::max(ql, 0);
        qr = std::min(qr, length);
        ql += length, qr += length;

        T lacc = unit, racc = unit;
        while (ql < qr) {
            if (ql & 1) {
                lacc = merge(lacc, dat[ql]);
                ++ql;
            }
            if (qr & 1) {
                --qr;
                racc = merge(dat[qr], racc);
            }
            ql >>= 1, qr >>= 1;
        }

        return merge(lacc, racc);
    }

    T get(int idx) const { return dat[idx + length]; }
    T fold_all() const { return dat[1]; }
};

using lint = long long;

void solve() {
    int n;
    std::cin >> n;

    std::vector<lint> xs(n), ys(n);
    for (auto& x : xs) std::cin >> x;
    for (auto& y : ys) std::cin >> y;

    if (xs[0] != ys[0]) {
        std::cout << "-1\n";
        return;
    }

    std::vector<lint> xds(n - 1), yds(n - 1);
    std::map<int, int> xcnt, ycnt;
    for (int i = 0; i < n - 1; ++i) {
        lint d = xs[i + 1] ^ xs[i];
        if (!xcnt.count(d)) xcnt[d] = 0;
        xds[i] = d * n + (xcnt[d]++);
    }

    for (int i = 0; i < n - 1; ++i) {
        lint d = ys[i + 1] ^ ys[i];
        if (!ycnt.count(d)) ycnt[d] = 0;
        yds[i] = d * n + (ycnt[d]++);
    }

    if (xcnt != ycnt) {
        std::cout << "-1\n";
        return;
    }

    std::map<lint, int> yrev;
    for (int i = 0; i < n - 1; ++i) yrev[yds[i]] = i;
    assert((int)yrev.size() == n - 1);

    for (auto& x : xds) x = yrev[x];

    SegmentTree<lint>
        seg(n - 1, 0, [](auto a, auto b) { return a + b; });

    lint ans = 0;
    for (auto x : xds) {
        ans += seg.fold(x, n - 1);
        seg.update(x, 1);
    }

    std::cout << ans << "\n";
}

int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0