結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー Y17Y17
提出日時 2020-07-17 21:50:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 1,224 bytes
コンパイル時間 1,742 ms
コンパイル使用メモリ 169,036 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-05-07 08:05:19
合計ジャッジ時間 4,406 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 56 ms
6,528 KB
testcase_04 AC 65 ms
7,040 KB
testcase_05 AC 56 ms
6,528 KB
testcase_06 AC 51 ms
6,400 KB
testcase_07 AC 67 ms
7,040 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 37 ms
5,632 KB
testcase_10 AC 63 ms
7,168 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 69 ms
7,168 KB
testcase_13 AC 67 ms
7,168 KB
testcase_14 AC 67 ms
7,168 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 3 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 3 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 7 ms
5,376 KB
testcase_24 AC 24 ms
5,376 KB
testcase_25 AC 49 ms
6,144 KB
testcase_26 AC 13 ms
5,376 KB
testcase_27 AC 30 ms
5,376 KB
testcase_28 AC 40 ms
5,632 KB
testcase_29 AC 53 ms
6,400 KB
testcase_30 AC 64 ms
6,912 KB
testcase_31 AC 16 ms
5,376 KB
testcase_32 AC 11 ms
5,376 KB
testcase_33 AC 56 ms
6,656 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 1 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>
using namespace std;

#define int long long
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }

template<class T> struct BinaryIndexTree{
    int n;
    vector<T> bit; 
    vector<T> org;

    BinaryIndexTree(int si): bit(si+1), org(si+1) { n = si; }; 

    void add(int idx, T v){
        org[++idx] += v;
        for(int i = idx;i <= n;i+=i&-i) bit[i] += v;
    }

    void update(int idx, T v){
        T vv = v - org[++idx];
        org[idx] = v;
        for(int i = idx;i <= n;i+=i&-i) bit[i] += vv;
    }

    T sum(int a){
        T ret = 0;
        for(int i = a;i > 0;i-=i&-i) ret += bit[i];
        return ret;
    }

    T sum(int l, int r) { return sum(r)-sum(l); }; 
};


signed main(){
	int n;
	cin >> n;

	int a[100010];
	int b[100010];
	for(int i = 0;i < n;i++) cin >> a[i];

	int tmp[100010];
	for(int i = 0;i < n;i++){
		cin >> b[i];
		tmp[b[i]] = i;
	}
	for(int i = 0;i < n;i++) a[i] = tmp[a[i]];

	BinaryIndexTree<int> bit(n);

	int ans = 0;
	for(int i = 0;i < n;i++){
		ans += bit.sum(a[i], n);
		bit.add(a[i], 1);
	}
	cout << ans << endl;
	return 0;
}
0