結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー tko919tko919
提出日時 2020-07-17 22:55:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 943 bytes
コンパイル時間 1,486 ms
コンパイル使用メモリ 174,256 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-05-07 10:24:29
合計ジャッジ時間 4,224 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 67 ms
8,320 KB
testcase_04 AC 78 ms
9,088 KB
testcase_05 AC 67 ms
8,320 KB
testcase_06 AC 60 ms
7,936 KB
testcase_07 AC 77 ms
9,088 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 29 ms
6,784 KB
testcase_10 AC 54 ms
9,216 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 79 ms
9,216 KB
testcase_13 AC 81 ms
9,344 KB
testcase_14 AC 79 ms
9,216 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 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 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 7 ms
5,376 KB
testcase_24 AC 25 ms
5,452 KB
testcase_25 AC 57 ms
7,680 KB
testcase_26 AC 12 ms
5,376 KB
testcase_27 AC 32 ms
5,888 KB
testcase_28 AC 43 ms
6,912 KB
testcase_29 AC 61 ms
7,936 KB
testcase_30 AC 76 ms
8,832 KB
testcase_31 AC 17 ms
5,376 KB
testcase_32 AC 11 ms
5,376 KB
testcase_33 AC 68 ms
8,448 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 #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;

//template
#define rep(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define ALL(v) (v).begin(),(v).end()
typedef long long int ll;
const int inf = 0x3fffffff; const ll INF = 0x1fffffffffffffff; const double eps=1e-12;
template<typename T>inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;}
template<typename T>inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;}
//end

int bit[200010]={},n;
void add(int i,int x){
  while(i<=n){
    bit[i]+=x;
    i+=(i&(-i));
  }
}
ll sum(int i){
  ll s=0;
  while(i){
    s+=bit[i];
    i-=(i&(-i));
  }
  return s;
}
 
int main(){
  scanf("%d",&n);
  vector<int> a(n),b(n);
  rep(i,0,n)scanf("%d",&a[i]);
  rep(i,0,n)scanf("%d",&b[i]);
  map<int,int> pos;
  rep(i,0,n)pos[b[i]]=i+1;
  rep(i,0,n)a[i]=pos[a[i]];
  ll ans=0;
  rep(i,0,n){
    ans+=i-sum(a[i]);
    add(a[i],1);
  }
  printf("%lld\n",ans);
  return 0;
}
0