結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー chocopuuchocopuu
提出日時 2020-08-09 05:15:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 2,399 bytes
コンパイル時間 2,169 ms
コンパイル使用メモリ 204,716 KB
実行使用メモリ 8,620 KB
最終ジャッジ日時 2023-07-26 20:11:18
合計ジャッジ時間 7,052 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
4,380 KB
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 64 ms
7,856 KB
testcase_04 AC 73 ms
8,108 KB
testcase_05 AC 64 ms
7,728 KB
testcase_06 AC 60 ms
7,508 KB
testcase_07 AC 74 ms
8,052 KB
testcase_08 AC 4 ms
4,384 KB
testcase_09 AC 40 ms
5,944 KB
testcase_10 AC 73 ms
8,620 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 72 ms
8,260 KB
testcase_13 AC 73 ms
8,388 KB
testcase_14 AC 71 ms
8,328 KB
testcase_15 AC 2 ms
4,380 KB
testcase_16 AC 1 ms
4,384 KB
testcase_17 AC 1 ms
4,384 KB
testcase_18 AC 1 ms
4,384 KB
testcase_19 AC 2 ms
4,384 KB
testcase_20 AC 1 ms
4,384 KB
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 1 ms
4,380 KB
testcase_23 AC 6 ms
4,380 KB
testcase_24 AC 27 ms
5,124 KB
testcase_25 AC 57 ms
7,580 KB
testcase_26 AC 14 ms
4,380 KB
testcase_27 AC 33 ms
5,360 KB
testcase_28 AC 45 ms
5,884 KB
testcase_29 AC 59 ms
7,780 KB
testcase_30 AC 70 ms
7,996 KB
testcase_31 AC 17 ms
4,380 KB
testcase_32 AC 12 ms
4,380 KB
testcase_33 AC 61 ms
7,848 KB
testcase_34 AC 2 ms
4,380 KB
testcase_35 AC 1 ms
4,384 KB
testcase_36 AC 2 ms
4,380 KB
testcase_37 AC 2 ms
4,380 KB
testcase_38 AC 1 ms
4,380 KB
testcase_39 AC 1 ms
4,384 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