結果
| 問題 | No.1115 二つの数列 / Two Sequences |
| コンテスト | |
| ユーザー |
kyoprouno
|
| 提出日時 | 2020-07-17 22:26:36 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 59 ms / 2,000 ms |
| コード長 | 1,477 bytes |
| コンパイル時間 | 1,757 ms |
| コンパイル使用メモリ | 176,924 KB |
| 実行使用メモリ | 5,632 KB |
| 最終ジャッジ日時 | 2024-11-30 01:11:15 |
| 合計ジャッジ時間 | 4,094 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 35 |
ソースコード
#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;
}
kyoprouno