結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー chocopuuchocopuu
提出日時 2020-08-09 05:15:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 2,399 bytes
コンパイル時間 2,295 ms
コンパイル使用メモリ 205,420 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-10-03 06:38:50
合計ジャッジ時間 5,691 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 71 ms
7,808 KB
testcase_04 AC 80 ms
8,192 KB
testcase_05 AC 71 ms
7,936 KB
testcase_06 AC 63 ms
7,680 KB
testcase_07 AC 81 ms
8,192 KB
testcase_08 AC 6 ms
5,248 KB
testcase_09 AC 46 ms
6,016 KB
testcase_10 AC 77 ms
8,320 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 82 ms
8,448 KB
testcase_13 AC 80 ms
8,320 KB
testcase_14 AC 81 ms
8,448 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 7 ms
5,248 KB
testcase_24 AC 29 ms
5,504 KB
testcase_25 AC 61 ms
7,424 KB
testcase_26 AC 15 ms
5,248 KB
testcase_27 AC 36 ms
5,760 KB
testcase_28 AC 50 ms
6,272 KB
testcase_29 AC 65 ms
7,680 KB
testcase_30 AC 78 ms
8,064 KB
testcase_31 AC 20 ms
5,248 KB
testcase_32 AC 13 ms
5,248 KB
testcase_33 AC 69 ms
7,936 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 3 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define int long long
#define REP(i, n) for (int i = 0; i < (int)n; ++i)
#define RREP(i, n) for (int i = (int)n - 1; i >= 0; --i)
#define FOR(i, s, n) for (int i = s; i < (int)n; ++i)
#define RFOR(i, s, n) for (int i = (int)n - 1; i >= s; --i)
#define ALL(a) a.begin(), a.end()
#define IN(a, x, b) (a <= x && x < b)
template<class T>istream&operator >>(istream&is,vector<T>&vec){for(T&x:vec)is>>x;return is;}
template<class T>inline void out(T t){cout << t << "\n";}
template<class T,class... Ts>inline void out(T t,Ts... ts){cout << t << " ";out(ts...);}
template<class T>inline bool CHMIN(T&a,T b){if(a > b){a = b;return true;}return false;}
template<class T>inline bool CHMAX(T&a,T b){if(a < b){a = b;return true;}return false;}
constexpr int INF = 1e18;

template <typename T>
struct SegmentTree{
  using F = function<T(T,T)>;
  int n;
  F f;
  T ti;
  vector<T> dat;

  SegmentTree(){}
  SegmentTree(F f,T ti):f(f),ti(ti){}

  void init(int n_){
	n=1;
	while(n<n_) n<<=1;
	dat.assign(n<<1,ti);
  }

  void build(const vector<T> &v){
	int n_=v.size();
	init(n_);
	for(int i=0;i<n_;i++) dat[n+i]=v[i];
	for(int i=n-1;i;i--)
	  dat[i]=f(dat[(i<<1)|0],dat[(i<<1)|1]);
  }

  void set_val(int k,T x){
	dat[k+=n]=x;
	while(k>>=1)
	  dat[k]=f(dat[(k<<1)|0],dat[(k<<1)|1]);
  }

  T query(int a,int b){
	if(a>=b) return ti;
	T vl=ti,vr=ti;
	for(int l=a+n,r=b+n;l<r;l>>=1,r>>=1) {
	  if(l&1) vl=f(vl,dat[l++]);
	  if(r&1) vr=f(dat[--r],vr);
	}
	return f(vl,vr);
  }

  template<typename C>
  int find(int st,C &check,T &acc,int k,int l,int r){
	if(l+1==r){
	  acc=f(acc,dat[k]);
	  return check(acc)?k-n:-1;
	}
	int m=(l+r)>>1;
	if(m<=st) return find(st,check,acc,(k<<1)|1,m,r);
	if(st<=l&&!check(f(acc,dat[k]))){
	  acc=f(acc,dat[k]);
	  return -1;
	}
	int vl=find(st,check,acc,(k<<1)|0,l,m);
	if(~vl) return vl;
	return find(st,check,acc,(k<<1)|1,m,r);
  }

  template<typename C>
  int find(int st,C &check){
	T acc=ti;
	return find(st,check,acc,1,0,n);
  }
  //アウトの条件を渡す
};

signed main(){
	int N;
	cin >> N;
	vector<int>a(N), b(N), inv(N);
	cin >> a >> b;
	REP(i, N) {
		--a[i]; --b[i];
		inv[a[i]] = i;
	}
	REP(i, N) {
		b[i] = inv[b[i]];
	}
	auto seg = SegmentTree<int>([](int a, int b){return a + b;}, 0ll);
	seg.build(vector<int>(N));
	int ans = 0;
	REP(i, N) {
		ans += seg.query(b[i], N);
		seg.set_val(b[i], 1);
	}
	out(ans);
}
0