結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー glretoglreto
提出日時 2021-05-12 17:58:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 1,498 bytes
コンパイル時間 1,319 ms
コンパイル使用メモリ 120,616 KB
実行使用メモリ 6,640 KB
最終ジャッジ日時 2024-09-23 02:38:46
合計ジャッジ時間 4,620 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 63 ms
6,156 KB
testcase_04 AC 73 ms
6,620 KB
testcase_05 AC 62 ms
6,156 KB
testcase_06 AC 57 ms
5,864 KB
testcase_07 AC 72 ms
6,348 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 37 ms
5,376 KB
testcase_10 AC 65 ms
6,640 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 75 ms
6,640 KB
testcase_13 AC 75 ms
6,636 KB
testcase_14 AC 73 ms
6,636 KB
testcase_15 AC 2 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 7 ms
5,376 KB
testcase_24 AC 26 ms
5,376 KB
testcase_25 AC 54 ms
5,852 KB
testcase_26 AC 13 ms
5,376 KB
testcase_27 AC 32 ms
5,376 KB
testcase_28 AC 44 ms
5,376 KB
testcase_29 AC 58 ms
5,788 KB
testcase_30 AC 69 ms
6,300 KB
testcase_31 AC 18 ms
5,376 KB
testcase_32 AC 12 ms
5,376 KB
testcase_33 AC 57 ms
6,172 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 #

#include <iostream>
#include<vector>
#include<string>
#include<algorithm>
#include<iomanip>
#include<map>
#include<random>
#include<complex>
#include<math.h>
#include<functional>
#include<stack>
#include<queue>
#include<unordered_map>
#include<set>
#include<numeric>
#include <cassert>
using namespace std;
#define rep(i, n) for (int i = 0; i < (ll)(n); i++)
#define req(i,n) for(int i = 1;i <=  n; i++)
#define rrep(i,n) for(ll i = n-1;i >= 0;i--)
#define ALL(obj) begin(obj), end(obj)
#define RALL(a) rbegin(a),rend(a)
typedef long long ll;
typedef long double ld;
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 int inf = 0x3fffffff;
const ll INF = 1e18;
class BIT {
public:
	int n; vector<ll> a;
	BIT(int n) :n(n), a(n + 1, 0) {}
	void add(int i, ll x) {
		i++;
		if (i == 0)return;
		for (int j = i; j <= n; j += (j & -j)) a[j] += x;
	}ll sum(int i) {
		i++; ll sum = 0;
		if (i == 0)return sum;
		for (int j = i; j > 0; j -= (j & -j)) sum += a[j];
		return sum;
	}
};
int main() {
	int n, m; cin >> n;
	vector<int> a(n), A(n + 1), b(n), B(n + 1);
	rep(i, n) {
		cin >> a[i];
	}vector<pair<int, int>> p;
	rep(i, n) {
		cin >> b[i];
		B[b[i]] = i + 1;
	}
	rep(i, n) p.push_back({ B[a[i]],i + 1 });
	sort(RALL(p));
	BIT bit(n + 1);
	ll ans = 0;
	for (pair<int, int> i : p) {
		ans += bit.sum(i.second);
		bit.add(i.second, 1);
	}cout << ans << endl;
}
0