結果

問題 No.1209 XOR Into You
ユーザー polyomino_24polyomino_24
提出日時 2020-09-06 17:23:31
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 3,276 bytes
コンパイル時間 1,877 ms
コンパイル使用メモリ 140,168 KB
実行使用メモリ 16,616 KB
最終ジャッジ日時 2024-11-29 07:21:23
合計ジャッジ時間 11,365 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 83 ms
5,248 KB
testcase_05 AC 82 ms
5,248 KB
testcase_06 AC 99 ms
5,504 KB
testcase_07 AC 207 ms
14,308 KB
testcase_08 AC 196 ms
13,156 KB
testcase_09 AC 192 ms
13,284 KB
testcase_10 AC 150 ms
11,416 KB
testcase_11 AC 181 ms
13,016 KB
testcase_12 AC 174 ms
12,388 KB
testcase_13 AC 202 ms
13,720 KB
testcase_14 AC 158 ms
12,140 KB
testcase_15 AC 185 ms
12,584 KB
testcase_16 AC 178 ms
12,552 KB
testcase_17 AC 160 ms
11,992 KB
testcase_18 AC 259 ms
15,908 KB
testcase_19 AC 177 ms
12,552 KB
testcase_20 AC 206 ms
13,736 KB
testcase_21 AC 147 ms
11,128 KB
testcase_22 AC 152 ms
16,488 KB
testcase_23 AC 151 ms
16,488 KB
testcase_24 AC 152 ms
16,488 KB
testcase_25 AC 269 ms
16,488 KB
testcase_26 AC 257 ms
16,616 KB
testcase_27 AC 267 ms
16,488 KB
testcase_28 AC 262 ms
16,616 KB
testcase_29 AC 265 ms
16,488 KB
testcase_30 AC 260 ms
16,492 KB
testcase_31 AC 125 ms
6,252 KB
testcase_32 AC 125 ms
6,248 KB
testcase_33 AC 126 ms
6,376 KB
testcase_34 AC 131 ms
6,248 KB
testcase_35 AC 126 ms
6,376 KB
testcase_36 AC 126 ms
6,376 KB
testcase_37 AC 93 ms
6,252 KB
testcase_38 AC 207 ms
14,168 KB
testcase_39 AC 177 ms
12,952 KB
testcase_40 AC 151 ms
16,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cassert>
#include <cctype>
#include <climits>
#include <cmath>
#include <complex>
#include <cstdio>
#include <cstring>
#include <deque>
#include <functional>
#include <iomanip>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <stack>
#include <string>
#include <tuple>
#include <vector>
#include <list>
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
//#define cerr if(false) cerr
#ifdef DEBUG
#define show(...) cerr << #__VA_ARGS__ << " = ", debug(__VA_ARGS__);
#else
#define show(...) 42
#endif
using namespace std;
using ll = long long;
using pii = pair<int, int>;
template <typename T, typename S>
ostream& operator<<(ostream& os, pair<T, S> a) {
    os << '(' << a.first << ',' << a.second << ')';
    return os;
}
template <typename T>
ostream& operator<<(ostream& os, vector<T> v) {
    for (auto x : v) os << x << ' ';
    return os;
}
void debug() {
    cerr << '\n';
}
template <typename H, typename... T>
void debug(H a, T... b) {
    cerr << a;
    if (sizeof...(b)) cerr << ", ";
    debug(b...);
}
template<typename T> class BIT {
private:
    int n;
    vector<T> bit;
public:
    // 0_indexed で i 番目の要素に x を加える
    void add(int i, T x){
        i++;
        while(i < n){
            bit[i] += x, i += i & -i;
        }
    }
    // 0_indexed で [0,i] の要素の和(両閉区間!!)
    T sum(int i){
        i++;
        T s = 0;
        while(i > 0){
            s += bit[i], i -= i & -i;
        }
        return s;
    }
    BIT(){}
    //初期値がすべて0の場合
    BIT(int sz) : n(sz+1), bit(n, 0){}
    BIT(const vector<T>& v) : n((int)v.size()+1), bit(n, 0){
        for(int i = 0; i < n-1; i++){
            add(i,v[i]);
        }
    }
    void print(){
        for(int i = 0; i < n-1; i++){
            cout << sum(i) - sum(i-1) << " ";
        }
        cout << "\n";
    }
    //-1スタート
    void print_sum(){
        for(int i = 0; i < n; i++){
            cout << sum(i-1) << " ";
        }
        cout << "\n";
    }
};
 
// u を昇順にソートするのに必要な交換回数(転倒数) (u は {0,..., n-1} からなる重複を許した長さ n の数列)
long long inv_count(const vector<int>& u)
{
    int n = (int)u.size();
    BIT<int> bt(n);
    long long ans = 0;
    for(int i = 0; i < n; i++){
        ans += i - bt.sum(u[i]);
        bt.add(u[i], 1);
    }
    return ans;
}
 
int main(){
    int n;
    cin >> n;
    vector<int>a(n);
    vector<int>b(n);
    rep(i,n)cin >> a[i];
    rep(i,n)cin >> b[i];
    if(a[0] != b[0] or a[n-1] != b[n-1]){
        cout << -1 << endl;
        return 0;
    }
    vector<int>c(n-1);
    vector<int>d(n-1);
    rep(i,n-1){
        c[i] = a[i] ^ a[i+1];
        d[i] = b[i] ^ b[i+1];
    }
    {
        auto cc = c;
        auto dd = d;
        sort(cc.begin(), cc.end());
        sort(dd.begin(), dd.end());
        if(cc != dd){
            cout << -1 << endl;
            return 0;
        }
    }
    vector<int> e(n-1);
    map<int,vector<int>>mp;
    rep(i,n-1){
        mp[c[i]].push_back(i);
    }
    for(int i = n - 2; i >= 0; i--){
        e[i] = mp[d[i]].back();
        mp[d[i]].pop_back();
    }
    cout << inv_count(e) << endl;
}
0