結果

問題 No.1788 Same Set
ユーザー Arnold ParkArnold Park
提出日時 2022-08-03 07:24:57
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 488 ms / 4,000 ms
コード長 2,029 bytes
コンパイル時間 2,104 ms
コンパイル使用メモリ 181,428 KB
実行使用メモリ 23,364 KB
最終ジャッジ日時 2024-07-26 19:39:15
合計ジャッジ時間 14,426 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
16,256 KB
testcase_01 AC 6 ms
16,256 KB
testcase_02 AC 6 ms
16,256 KB
testcase_03 AC 6 ms
16,256 KB
testcase_04 AC 5 ms
16,384 KB
testcase_05 AC 5 ms
16,256 KB
testcase_06 AC 6 ms
16,256 KB
testcase_07 AC 7 ms
16,256 KB
testcase_08 AC 7 ms
16,256 KB
testcase_09 AC 7 ms
16,256 KB
testcase_10 AC 5 ms
16,256 KB
testcase_11 AC 72 ms
17,920 KB
testcase_12 AC 165 ms
19,584 KB
testcase_13 AC 199 ms
19,968 KB
testcase_14 AC 284 ms
19,840 KB
testcase_15 AC 372 ms
19,712 KB
testcase_16 AC 421 ms
19,968 KB
testcase_17 AC 275 ms
22,912 KB
testcase_18 AC 364 ms
21,120 KB
testcase_19 AC 173 ms
21,376 KB
testcase_20 AC 86 ms
19,712 KB
testcase_21 AC 380 ms
20,480 KB
testcase_22 AC 411 ms
22,784 KB
testcase_23 AC 316 ms
23,364 KB
testcase_24 AC 359 ms
22,912 KB
testcase_25 AC 487 ms
22,784 KB
testcase_26 AC 471 ms
22,912 KB
testcase_27 AC 97 ms
20,992 KB
testcase_28 AC 488 ms
22,912 KB
testcase_29 AC 440 ms
22,912 KB
testcase_30 AC 97 ms
21,760 KB
testcase_31 AC 465 ms
23,040 KB
testcase_32 AC 371 ms
23,040 KB
testcase_33 AC 394 ms
22,912 KB
testcase_34 AC 415 ms
23,168 KB
testcase_35 AC 403 ms
22,912 KB
testcase_36 AC 395 ms
23,168 KB
testcase_37 AC 411 ms
22,912 KB
testcase_38 AC 396 ms
22,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;

const int MAXN = 4e5;

int N, A[MAXN+10], B[MAXN+10];
int PA[MAXN+10], PB[MAXN+10];

pii operator + (const pii &p, const pii &q)
{
	if(p.first==q.first) return {p.first, p.second+q.second};
	return min(p, q);
}

struct SEG
{
	pii tree[MAXN*4+10];
	int lazy[MAXN*4+10];

	void busy(int node, int tl, int tr)
	{
		if(!lazy[node]) return;
		tree[node].first+=lazy[node];
		if(tl!=tr)
		{
			lazy[node*2]+=lazy[node];
			lazy[node*2+1]+=lazy[node];
		}
		lazy[node]=0;
	}

	void init(int node, int tl, int tr)
	{
		if(tl==tr)
		{
			tree[node]=pii(0, 1);
			return;
		}
		int mid=tl+tr>>1;
		init(node*2, tl, mid);
		init(node*2+1, mid+1, tr);
		tree[node]=tree[node*2]+tree[node*2+1];
	}

	void update(int node, int tl, int tr, int l, int r, int k)
	{
		if(l>r) return;
		busy(node, tl, tr);
		if(r<tl || tr<l) return;
		if(l<=tl && tr<=r)
		{
			lazy[node]+=k;
			busy(node, tl, tr);
			return;
		}
		int mid=tl+tr>>1;
		update(node*2, tl, mid, l, r, k);
		update(node*2+1, mid+1, tr, l, r, k);
		tree[node]=tree[node*2]+tree[node*2+1];
	}

	pii query(int node, int tl, int tr, int l, int r)
	{
		busy(node, tl, tr);
		if(l<=tl && tr<=r) return tree[node];
		if(r<tl || tr<l) return pii(987654321, 0);
		int mid=tl+tr>>1;
		return query(node*2, tl, mid, l, r)+query(node*2+1, mid+1, tr, l, r);
	}
}seg;

int main()
{
	scanf("%d", &N);
	for(int i=1; i<=N; i++) scanf("%d", &A[i]);
	for(int i=1; i<=N; i++) scanf("%d", &B[i]);

	seg.init(1, 1, N);

	ll ans=0;
	for(int i=1; i<=N; i++)
	{
		int l, r;
		vector<int> V;
		V.push_back(A[i]);
		if(A[i]!=B[i]) V.push_back(B[i]);

		for(auto it : V)
		{
			l=PA[it]; r=PB[it]; if(l>r) swap(l, r);
			seg.update(1, 1, N, l+1, r, -1);
		}

		PA[A[i]]=i; PB[B[i]]=i;

		for(auto it : V)
		{
			l=PA[it]; r=PB[it]; if(l>r) swap(l, r);
			seg.update(1, 1, N, l+1, r, 1);
		}

		pii t=seg.query(1, 1, N, 1, i);
		if(t.first==0) ans+=t.second;
	}
	printf("%lld\n", ans);
}
0