結果

問題 No.2956 Substitute with Average
ユーザー nouka28nouka28
提出日時 2024-11-08 22:34:42
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,249 ms / 3,000 ms
コード長 1,002 bytes
コンパイル時間 5,938 ms
コンパイル使用メモリ 322,224 KB
実行使用メモリ 17,564 KB
最終ジャッジ日時 2024-11-08 22:35:10
合計ジャッジ時間 24,090 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 927 ms
17,296 KB
testcase_11 AC 861 ms
16,968 KB
testcase_12 AC 905 ms
16,748 KB
testcase_13 AC 914 ms
17,072 KB
testcase_14 AC 921 ms
16,948 KB
testcase_15 AC 856 ms
17,136 KB
testcase_16 AC 896 ms
17,060 KB
testcase_17 AC 917 ms
17,104 KB
testcase_18 AC 1,020 ms
17,308 KB
testcase_19 AC 951 ms
17,308 KB
testcase_20 AC 919 ms
17,184 KB
testcase_21 AC 923 ms
17,308 KB
testcase_22 AC 1,089 ms
17,304 KB
testcase_23 AC 1,249 ms
16,948 KB
testcase_24 AC 926 ms
17,140 KB
testcase_25 AC 941 ms
17,140 KB
testcase_26 AC 976 ms
17,564 KB
testcase_27 AC 989 ms
17,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include<atcoder/all>
using namespace atcoder;
using mint=atcoder::modint998244353;

#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#define int long long

using ld=long double;

signed main(){
	int N;cin>>N;
	vector<int> A(N);for(auto&&e:A)cin>>e;

	int cnt=N*(N+1)/2;
	int ans=1;

	for(int avg=1;avg<=30;avg++){
		vector<int> B(N);
		for(int i=0;i<N;i++){
			B[i]=A[i]-avg;
		}

		vector<int> sm={0};
		for(auto&&e:B)sm.push_back(sm.back()+e);

		map<int,vector<int>> v;

		for(int i=0;i<sm.size();i++){
			v[sm[i]].push_back(i);
		}

		dsu ds(N);
		for(int i=0;i<N-1;i++){
			if(A[i]==avg&&A[i+1]==avg){
				ds.merge(i,i+1);
			}
		}

		for(auto&&[val,vec]:v){
			int sz=vec.size();
			cnt-=sz*(sz-1)/2;

			set<int> ls;

			for(int i=0;i<sz;i++){
				if(i){
					if(ls.count(ds.leader(vec[i]-1)))continue;
					ans+=ls.size();
				}

				if(i<sz-1){
					ls.insert(ds.leader(vec[i]));
				}
			}
		}
	}

	ans+=cnt;

	cout<<ans<<endl;
}
0