結果

問題 No.956 Number of Unbalanced
ユーザー HIR180HIR180
提出日時 2019-12-20 03:11:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 365 ms / 2,000 ms
コード長 1,490 bytes
コンパイル時間 3,213 ms
コンパイル使用メモリ 201,804 KB
実行使用メモリ 8,196 KB
最終ジャッジ日時 2024-07-07 04:40:14
合計ジャッジ時間 8,429 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,812 KB
testcase_03 AC 1 ms
6,812 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 173 ms
6,944 KB
testcase_07 AC 290 ms
6,940 KB
testcase_08 AC 157 ms
6,944 KB
testcase_09 AC 90 ms
6,940 KB
testcase_10 AC 223 ms
6,940 KB
testcase_11 AC 273 ms
6,944 KB
testcase_12 AC 175 ms
6,940 KB
testcase_13 AC 44 ms
6,940 KB
testcase_14 AC 354 ms
8,196 KB
testcase_15 AC 81 ms
6,944 KB
testcase_16 AC 141 ms
6,944 KB
testcase_17 AC 61 ms
6,940 KB
testcase_18 AC 365 ms
8,192 KB
testcase_19 AC 63 ms
6,940 KB
testcase_20 AC 361 ms
8,068 KB
testcase_21 AC 46 ms
6,940 KB
testcase_22 AC 61 ms
6,940 KB
testcase_23 AC 140 ms
6,940 KB
testcase_24 AC 60 ms
6,944 KB
testcase_25 AC 234 ms
6,944 KB
testcase_26 AC 51 ms
6,940 KB
testcase_27 AC 183 ms
6,940 KB
testcase_28 AC 237 ms
6,940 KB
testcase_29 AC 350 ms
8,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
typedef long long ll;
typedef pair<int,int> P;
typedef pair<int,P> P1;
typedef pair<P,P> P2;
#define pu push
#define pb push_back
#define mp make_pair
#define eps 1e-7
#define INF 1000000000
#define fi first
#define sc second
#define rep(i,x) for(int i=0;i<x;i++)
#define repn(i,x) for(int i=1;i<=x;i++)
#define SORT(x) sort(x.begin(),x.end())
#define ERASE(x) x.erase(unique(x.begin(),x.end()),x.end())
#define POSL(x,v) (lower_bound(x.begin(),x.end(),v)-x.begin())
#define POSU(x,v) (upper_bound(x.begin(),x.end(),v)-x.begin())
int n,a[100005];
ll ans;
void rec(int l,int r){
	if(l > r) return;
	if(l == r) { ans++; return ;}
	int m = (l+r)/2;
	set<int>S;
	map<int,int>M;
	for(int i=m;i>=l;i--){
		M[a[i]]++;
		if( (m-i+1+1)/2 <= M[a[i]] ) S.insert(a[i]);
	}
	M.clear();
	for(int i=m+1;i<=r;i++){
		M[a[i]]++;
		if( (i-m+1)/2 <= M[a[i]] ) S.insert(a[i]);
	}
	for(auto cand:S){
		vector<int>vi;
		vi.resize((m-l+1)*2+5,0);
		int geta = (m-l+3);
		int cur = 0;
		for(int i=m;i>=l;i--){
			if(a[i] == cand) cur++;
			else cur--;
			vi[cur+geta]++;
		}
		for(int i=vi.size()-2;i>=0;i--) vi[i] += vi[i+1];
		cur = 0;
		for(int i=m+1;i<=r;i++){
			if(a[i] == cand) cur++;
			else cur--;
			int need = 1-cur+geta;
			ans += vi[need];
		}
	}
	rec(l,m);
	rec(m+1,r);
	return;
}
int main(){
	scanf("%d",&n);
	rep(i,n) scanf("%d",&a[i]);
	rec(0,n-1);
	printf("%lld\n",ans);
}
0