結果

問題 No.1788 Same Set
ユーザー shobonvipshobonvip
提出日時 2024-09-21 15:28:17
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 878 ms / 4,000 ms
コード長 2,746 bytes
コンパイル時間 6,437 ms
コンパイル使用メモリ 317,024 KB
実行使用メモリ 49,544 KB
最終ジャッジ日時 2024-09-21 15:28:46
合計ジャッジ時間 28,179 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
25,088 KB
testcase_01 AC 27 ms
25,216 KB
testcase_02 AC 24 ms
25,216 KB
testcase_03 AC 27 ms
25,088 KB
testcase_04 AC 25 ms
25,088 KB
testcase_05 AC 25 ms
25,088 KB
testcase_06 AC 25 ms
25,216 KB
testcase_07 AC 26 ms
25,344 KB
testcase_08 AC 25 ms
25,216 KB
testcase_09 AC 24 ms
25,088 KB
testcase_10 AC 24 ms
25,088 KB
testcase_11 AC 146 ms
39,948 KB
testcase_12 AC 353 ms
39,688 KB
testcase_13 AC 404 ms
39,688 KB
testcase_14 AC 530 ms
39,304 KB
testcase_15 AC 558 ms
39,172 KB
testcase_16 AC 571 ms
39,304 KB
testcase_17 AC 783 ms
46,728 KB
testcase_18 AC 765 ms
43,788 KB
testcase_19 AC 680 ms
49,544 KB
testcase_20 AC 166 ms
38,924 KB
testcase_21 AC 577 ms
39,048 KB
testcase_22 AC 618 ms
39,304 KB
testcase_23 AC 532 ms
39,304 KB
testcase_24 AC 603 ms
40,328 KB
testcase_25 AC 744 ms
40,204 KB
testcase_26 AC 759 ms
40,200 KB
testcase_27 AC 264 ms
41,484 KB
testcase_28 AC 878 ms
41,352 KB
testcase_29 AC 798 ms
41,480 KB
testcase_30 AC 263 ms
41,480 KB
testcase_31 AC 820 ms
41,352 KB
testcase_32 AC 764 ms
44,296 KB
testcase_33 AC 809 ms
44,300 KB
testcase_34 AC 855 ms
44,424 KB
testcase_35 AC 818 ms
44,868 KB
testcase_36 AC 827 ms
44,812 KB
testcase_37 AC 831 ms
44,808 KB
testcase_38 AC 810 ms
44,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

struct S {
	ll val, sum;
};

S op(S a, S b){
	if (a.val < b.val) return a;
	if (a.val > b.val) return b;
	return S{a.val, a.sum + b.sum};
}

S e(){
	return S{(ll)1e18, 0};
}

S mapping(ll f, S x) {
	return S{x.val + f, x.sum};
}

ll composition(ll g, ll f){
	return g + f;
}

ll id(){
	return 0;
}

// importbisect
template <typename T>
int bisect_left(vector<T> &X, T v){
	return lower_bound(X.begin(), X.end(), v) - X.begin();
}

template <typename T>
int bisect_right(vector<T> &X, T v){
	return upper_bound(X.begin(), X.end(), v) - X.begin();
}
// -----


int main(){
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	
	int n; cin >> n;
	vector<int> a(n), b(n);
	rep(i,0,n){
		cin >> a[i];
	}
	rep(i,0,n){
		cin >> b[i];
	}

	const int mx = 400050;

	lazy_segtree<S,op,e,ll,mapping,composition,id> seg(vector<S>(n, S{0,1}));

	vector bucket_a(mx, vector<int>(0));
	vector bucket_b(mx, vector<int>(0));
	rep(i,0,n){
		bucket_a[a[i]].push_back(i);
		bucket_b[b[i]].push_back(i);
	}

	vector<pair<int,int>> now_intervals(mx, pair(0,0));

	auto update = [&](int i, int l) -> void {
		int x = bisect_left(bucket_a[i], l);
		int y = bisect_left(bucket_b[i], l);
		int f = n;
		int g = n;
		if (x < (int)bucket_a[i].size()) {
			f = bucket_a[i][x];
		}
		if (y < (int)bucket_b[i].size()) {
			g = bucket_b[i][y];
		}
		if (f > g) swap(f, g);
		seg.apply(now_intervals[i].first, now_intervals[i].second, -1);
		now_intervals[i] = pair(f, g);
		seg.apply(now_intervals[i].first, now_intervals[i].second, +1);
	};

	rep(i,0,mx){
		update(i, 0);
	}

	ll ans = 0;
	rep(i,0,n){
		S g = seg.prod(i, n);
		if (g.val == 0) {
			ans += g.sum;
		}
		update(a[i], i+1);
		update(b[i], i+1);
	}
	cout << ans << '\n';


}

0