結果

問題 No.2950 Max Min Product
ユーザー nouka28nouka28
提出日時 2024-10-22 20:29:57
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,209 bytes
コンパイル時間 5,969 ms
コンパイル使用メモリ 320,856 KB
実行使用メモリ 16,080 KB
最終ジャッジ日時 2024-10-22 20:30:19
合計ジャッジ時間 21,858 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 203 ms
15,280 KB
testcase_04 AC 221 ms
15,324 KB
testcase_05 AC 234 ms
15,368 KB
testcase_06 AC 285 ms
15,844 KB
testcase_07 AC 287 ms
15,936 KB
testcase_08 AC 282 ms
16,064 KB
testcase_09 AC 140 ms
9,572 KB
testcase_10 AC 259 ms
15,744 KB
testcase_11 AC 218 ms
15,468 KB
testcase_12 AC 288 ms
16,028 KB
testcase_13 AC 286 ms
15,868 KB
testcase_14 AC 312 ms
15,864 KB
testcase_15 AC 287 ms
15,732 KB
testcase_16 AC 213 ms
15,216 KB
testcase_17 AC 234 ms
15,316 KB
testcase_18 AC 301 ms
16,028 KB
testcase_19 AC 307 ms
15,960 KB
testcase_20 AC 301 ms
15,852 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include<atcoder/all>
using namespace atcoder;

using mint=modint998244353;

struct S{
	mint sum;
	int len;	
};

S op(S x,S y){
	return {x.sum+y.sum,x.len+y.len};
}

S e(){
	return {0,0};
}

S mapping(int f,S x){
	if(f==-1)return x;
	return {mint(x.len)*f,x.len};
}

int composition(int f,int g){
	if(f==-1)return f;
	return g;
}

int id(){
	return -1;
}

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

	stack<pair<int,int>> inc,dec;
	lazy_segtree<S,op,e,int,mapping,composition,id> seg_inc(N),seg_dec(N);

	mint ans=0,sum=0;

	for(int i=0;i<N;i++){
		int incl=i;
		while(inc.size()&&inc.top().first<=A[i]){
			auto[x,l]=inc.top();inc.pop();
			sum-=x*seg_dec.prod(l,incl).sum;
			incl=l;
		}
		inc.push({A[i],incl});
		seg_inc.apply(incl,i,A[i]);
		sum+=A[i]*seg_dec.prod(incl,i).sum;

		int decl=i;
		while(dec.size()&&dec.top().first>=A[i]){
			auto[x,l]=dec.top();dec.pop();
			sum-=x*seg_inc.prod(l,decl).sum;
			decl=l;
		}
		dec.push({A[i],decl});
		seg_dec.apply(decl,i,A[i]);
		sum+=A[i]*seg_inc.prod(decl,i).sum;
		seg_inc.set(i,{A[i],1});
		seg_dec.set(i,{A[i],1});
		sum+=mint(A[i])*A[i];
		ans+=sum;
	}

	cout<<ans.val()<<endl;
}
0