結果

問題 No.1209 XOR Into You
ユーザー simasima_71simasima_71
提出日時 2020-07-29 16:27:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 2,458 bytes
コンパイル時間 2,794 ms
コンパイル使用メモリ 129,168 KB
実行使用メモリ 27,648 KB
最終ジャッジ日時 2024-06-29 02:31:22
合計ジャッジ時間 12,520 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 81 ms
5,376 KB
testcase_05 AC 81 ms
5,376 KB
testcase_06 AC 99 ms
7,936 KB
testcase_07 AC 255 ms
23,552 KB
testcase_08 AC 221 ms
21,316 KB
testcase_09 AC 224 ms
21,376 KB
testcase_10 AC 174 ms
18,176 KB
testcase_11 AC 219 ms
21,120 KB
testcase_12 AC 202 ms
20,004 KB
testcase_13 AC 239 ms
22,288 KB
testcase_14 AC 197 ms
19,508 KB
testcase_15 AC 205 ms
20,428 KB
testcase_16 AC 199 ms
20,116 KB
testcase_17 AC 190 ms
19,256 KB
testcase_18 AC 303 ms
26,368 KB
testcase_19 AC 199 ms
20,112 KB
testcase_20 AC 230 ms
22,400 KB
testcase_21 AC 167 ms
17,664 KB
testcase_22 AC 195 ms
27,372 KB
testcase_23 AC 196 ms
27,304 KB
testcase_24 AC 194 ms
27,648 KB
testcase_25 AC 306 ms
27,520 KB
testcase_26 AC 303 ms
27,520 KB
testcase_27 AC 298 ms
27,520 KB
testcase_28 AC 304 ms
27,392 KB
testcase_29 AC 303 ms
27,508 KB
testcase_30 AC 313 ms
27,508 KB
testcase_31 AC 151 ms
11,612 KB
testcase_32 AC 149 ms
11,604 KB
testcase_33 AC 150 ms
11,724 KB
testcase_34 AC 156 ms
11,484 KB
testcase_35 AC 151 ms
11,604 KB
testcase_36 AC 151 ms
11,472 KB
testcase_37 AC 105 ms
10,940 KB
testcase_38 AC 247 ms
23,168 KB
testcase_39 AC 214 ms
21,064 KB
testcase_40 AC 195 ms
27,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <tuple>
#include <cstdint>
#include <cstdio>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <deque>
#include <unordered_map>
#include <unordered_set>
#include <bitset>
#include <cctype>
#include <functional>
#include <ctime>
#include <fstream>
#include <cmath>
#include <limits>
#include <numeric>
#include <type_traits>
#include <iomanip>
#include <float.h>
#include <math.h>
#include <random>
#include <cassert>
using namespace std;
using ll = long long;

ll merge_cnt(vector<ll>& a) {
    ll n = a.size();
    if (n <= 1) { return 0; }

    ll cnt = 0;
    vector<ll> b(a.begin(), a.begin() + n / 2);
    vector<ll> c(a.begin() + n / 2, a.end());

    cnt += merge_cnt(b);
    cnt += merge_cnt(c);

    ll ai = 0, bi = 0, ci = 0;
    while (ai < n) {
        if (bi < b.size() && (ci == c.size() || b[bi] <= c[ci])) {
            a[ai++] = b[bi++];
        }
        else {
            cnt += n / 2 - bi;
            a[ai++] = c[ci++];
        }
    }
    return cnt;
}

int main() {
    ll n;
    cin >> n;
    assert(n >= 3 && n <= 100000);
    vector<ll> a(n);
    vector<ll> b(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
        assert(a[i] >= 0 && a[i] < (1ll << 30));
    }
    for (int i = 0; i < n; i++) {
        cin >> b[i];
        assert(b[i] >= 0 && b[i] < (1ll << 30));
    }
    if (a[0] != b[0])cout << -1 << endl;
    else {
        vector<ll> aa(n - 1);
        vector<ll> as(n - 1);
        vector<ll> bb(n - 1);
        vector<ll> bs(n - 1);
        for (int i = 0; i < n-1; i++) {
            aa[i] = a[i]^a[i+1];
            as[i] = aa[i];
        }
        for (int i = 0; i < n - 1; i++) {
            bb[i] = b[i] ^ b[i + 1];
            bs[i] = bb[i];
        }
        sort(as.begin(), as.end());
        sort(bs.begin(), bs.end());
        ll fl = 1;
        for (int i = 0; i < n - 1; i++) {
            if (as[i] != bs[i])fl = 0;
        }
        if (fl == 0)cout << -1 << endl;
        else {
            vector<ll> t(n-1);
            map<ll, vector<ll>> m;
            for (int i = 0; i < n - 1; i++) {
                m[bb[i]].push_back(i);
            }
            map<ll, ll>co;
            for (int i = 0; i < n - 1; i++) {
                t[i] = m[aa[i]][co[aa[i]]];
                co[aa[i]]++;
            }
            cout << merge_cnt(t) << endl;
        }
    }
}
0