結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー kappybarkappybar
提出日時 2020-07-17 21:46:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 1,654 bytes
コンパイル時間 1,950 ms
コンパイル使用メモリ 177,672 KB
実行使用メモリ 9,984 KB
最終ジャッジ日時 2024-05-07 07:54:36
合計ジャッジ時間 5,487 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 122 ms
8,960 KB
testcase_04 AC 147 ms
9,728 KB
testcase_05 AC 125 ms
8,832 KB
testcase_06 AC 109 ms
8,448 KB
testcase_07 AC 146 ms
9,856 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 54 ms
6,912 KB
testcase_10 AC 96 ms
9,856 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 154 ms
9,856 KB
testcase_13 AC 144 ms
9,856 KB
testcase_14 AC 146 ms
9,984 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 9 ms
5,376 KB
testcase_24 AC 42 ms
5,504 KB
testcase_25 AC 103 ms
8,192 KB
testcase_26 AC 20 ms
5,376 KB
testcase_27 AC 52 ms
6,144 KB
testcase_28 AC 80 ms
7,168 KB
testcase_29 AC 109 ms
8,448 KB
testcase_30 AC 141 ms
9,472 KB
testcase_31 AC 28 ms
5,376 KB
testcase_32 AC 18 ms
5,376 KB
testcase_33 AC 117 ms
8,960 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)(n);i++)
using namespace std;
using ll = long long ;
using P = pair<int,int> ;
using pll = pair<long long,long long>;
constexpr int INF = 1e9;
constexpr long long LINF = 1e17;
constexpr int MOD = 1000000007;
constexpr double PI = 3.14159265358979323846;


//1-indexedに注意!!!
struct BIT{
    private:
    int n,n_;
    vector<long long> bit;

    public:
    BIT(int n):n(n){
        bit.resize(n+1);
        n_ = 1;
        while(n_<=n) n_<<=1;
        n_ >>= 1;
    }
    //1-index
    long long sum(int i){
        long long res = 0;
        while(i > 0){
            res += bit[i];
            i -= i&-i;
        }
        return res;
    }
    //1-index
    void add(int i,long long val){
        while(i <= n){
            bit[i] += val;
            i += i&-i;
        }
    }
    //return 1-index
    int lowerbound(long long w){
        if(w <= 0) return 0;
        int x = 0;
        for(int k=n_;k>0;k>>=1){
            if(x+k<=n&&bit[x+k]<w){
                w -= bit[x+k];
                x += k;
            }
        }
        return x+1;
    }
};



int main(){
        int n;
        cin >> n;
        vector<int> a(n),b(n);
        rep(i,n) cin >> a[i];
        rep(i,n) cin >> b[i];
        map<int,int> mp;
        rep(i,n) mp[b[i]] = i;
        vector<int> v(n);
        rep(i,n){
            v[i] = mp[a[i]];
        }
        BIT bit(n);
        ll ans = 0;
        rep(i,n){
                ans += i-bit.sum(v[i]+1);
                bit.add(v[i]+1,1);
        }
        cout << ans << endl;
        return 0;
}
                        
                        
0