結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 83 ms
5,376 KB
testcase_05 AC 83 ms
5,376 KB
testcase_06 AC 99 ms
5,504 KB
testcase_07 AC 197 ms
14,316 KB
testcase_08 AC 176 ms
13,156 KB
testcase_09 AC 180 ms
13,156 KB
testcase_10 AC 136 ms
11,412 KB
testcase_11 AC 165 ms
13,012 KB
testcase_12 AC 144 ms
12,424 KB
testcase_13 AC 190 ms
13,720 KB
testcase_14 AC 143 ms
12,132 KB
testcase_15 AC 163 ms
12,580 KB
testcase_16 AC 166 ms
12,552 KB
testcase_17 AC 146 ms
11,992 KB
testcase_18 AC 244 ms
15,908 KB
testcase_19 AC 155 ms
12,420 KB
testcase_20 AC 181 ms
13,736 KB
testcase_21 AC 130 ms
11,128 KB
testcase_22 AC 150 ms
16,616 KB
testcase_23 AC 151 ms
16,492 KB
testcase_24 AC 151 ms
16,484 KB
testcase_25 AC 234 ms
16,488 KB
testcase_26 AC 237 ms
16,488 KB
testcase_27 AC 218 ms
16,484 KB
testcase_28 AC 224 ms
16,484 KB
testcase_29 AC 240 ms
16,488 KB
testcase_30 AC 232 ms
16,484 KB
testcase_31 AC 124 ms
6,376 KB
testcase_32 AC 124 ms
6,284 KB
testcase_33 AC 124 ms
6,380 KB
testcase_34 AC 131 ms
6,248 KB
testcase_35 AC 125 ms
6,232 KB
testcase_36 AC 126 ms
6,252 KB
testcase_37 AC 93 ms
6,248 KB
testcase_38 AC 181 ms
14,168 KB
testcase_39 AC 154 ms
12,996 KB
testcase_40 AC 149 ms
16,488 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