結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー Manuel1024Manuel1024
提出日時 2021-04-03 03:10:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 1,098 bytes
コンパイル時間 798 ms
コンパイル使用メモリ 84,332 KB
実行使用メモリ 9,856 KB
最終ジャッジ日時 2024-06-06 12:04:26
合計ジャッジ時間 4,656 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 110 ms
8,960 KB
testcase_04 AC 133 ms
9,600 KB
testcase_05 AC 111 ms
8,832 KB
testcase_06 AC 100 ms
8,448 KB
testcase_07 AC 135 ms
9,728 KB
testcase_08 AC 6 ms
6,944 KB
testcase_09 AC 53 ms
6,944 KB
testcase_10 AC 94 ms
9,856 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 142 ms
9,856 KB
testcase_13 AC 141 ms
9,856 KB
testcase_14 AC 136 ms
9,856 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 9 ms
6,940 KB
testcase_24 AC 40 ms
6,940 KB
testcase_25 AC 96 ms
8,192 KB
testcase_26 AC 20 ms
6,940 KB
testcase_27 AC 51 ms
6,940 KB
testcase_28 AC 73 ms
7,168 KB
testcase_29 AC 102 ms
8,448 KB
testcase_30 AC 126 ms
9,472 KB
testcase_31 AC 28 ms
6,940 KB
testcase_32 AC 17 ms
6,944 KB
testcase_33 AC 108 ms
8,960 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 2 ms
6,944 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
using namespace std;
using ll = long long int;

class BIT{
private:
    vector<ll> a;
    int n;
public:
    BIT(int len){
        a = vector<ll>(len+1, 0);
        n = len;
    }

    void add(int ind, ll x){
        ind++;
        while(ind <= n){
            a[ind] += x;
            ind += ind & (-ind);
        }
    }

    ll sum_sub(int end){
        end++;
        ll ans = 0;
        while(end > 0){
            ans += a[end];
            end -= end & (-end);
        }
        return ans;
    }

    ll sum(int start, int end){
        return sum_sub(end)-sum_sub(start-1);
    }
};

int main(){
    int n;
    cin >> n;
    vector<int> a0(n), b(n);
    for(auto &p: a0) cin >> p;
    for(auto &p: b) cin >> p;

    map<int, int> memo;
    for(int i = 0; i < n; i++) memo[b[i]] = i;

    vector<int> a(n);
    for(int i = 0; i < n; i++) a[i] = memo[a0[i]];

    BIT data(n);
    ll ans = 0;
    for(int i = 0; i < n; i++){
        data.add(a[i], 1);
        ans += data.sum(a[i], n-1)-1;
    }

    cout << ans << endl;
    return 0;
}
0