結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー kyoprounokyoprouno
提出日時 2020-07-17 22:26:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 1,477 bytes
コンパイル時間 2,150 ms
コンパイル使用メモリ 177,180 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-05-07 09:35:00
合計ジャッジ時間 4,384 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 55 ms
5,376 KB
testcase_04 AC 62 ms
5,760 KB
testcase_05 AC 53 ms
5,376 KB
testcase_06 AC 49 ms
5,376 KB
testcase_07 AC 62 ms
5,632 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 34 ms
5,376 KB
testcase_10 AC 59 ms
5,632 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 63 ms
5,632 KB
testcase_13 AC 63 ms
5,760 KB
testcase_14 AC 63 ms
5,504 KB
testcase_15 AC 1 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 6 ms
5,376 KB
testcase_24 AC 22 ms
5,376 KB
testcase_25 AC 47 ms
5,376 KB
testcase_26 AC 12 ms
5,376 KB
testcase_27 AC 28 ms
5,376 KB
testcase_28 AC 38 ms
5,376 KB
testcase_29 AC 50 ms
5,376 KB
testcase_30 AC 61 ms
5,760 KB
testcase_31 AC 16 ms
5,376 KB
testcase_32 AC 11 ms
5,376 KB
testcase_33 AC 53 ms
5,504 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 #

#pragma GCC optimize("O3")
#include <bits/stdc++.h>
#define ll long long
#define rep(i,n) for(ll i=0;i<(n);i++)
#define pll pair<ll,ll>
#define pq priority_queue
#define pb push_back
#define eb emplace_back
#define fi first
#define se second
#define ios ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0);
#define lb(c,x) distance(c.begin(),lower_bound(all(c),x))
#define ub(c,x) distance(c.begin(),upper_bound(all(c),x))

using namespace std;

template<class T> inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;}
template<class T> inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;}

const ll INF=1e9+7;


template<typename T>

struct BIT {
  int n;
  vector<T> d;

  BIT(T n=0):n(n),d(n+1) {}

  void add(int i, T x=1) {
    for (i++; i <= n; i += i&-i) {
      //「i += i&-i」は区間を表すindexに最下位ビットを足したもの
      //「-i = ~i-1」が成り立つ
      d[i] += x;
    }
    //更新
  }

  T sum(int i) {
    T x = 0;
    for (i++; i; i -= i&-i) {
      x += d[i];
    }
    //iが0になったら終わり
    //取得
    return x;
  }

};

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