結果

問題 No.2950 Max Min Product
ユーザー nouka28nouka28
提出日時 2024-10-22 20:41:46
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 395 ms / 3,000 ms
コード長 1,031 bytes
コンパイル時間 5,865 ms
コンパイル使用メモリ 322,944 KB
実行使用メモリ 16,132 KB
最終ジャッジ日時 2024-10-25 23:29:31
合計ジャッジ時間 18,101 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 208 ms
15,156 KB
testcase_04 AC 227 ms
15,628 KB
testcase_05 AC 213 ms
15,300 KB
testcase_06 AC 300 ms
15,844 KB
testcase_07 AC 296 ms
16,060 KB
testcase_08 AC 299 ms
16,012 KB
testcase_09 AC 149 ms
9,700 KB
testcase_10 AC 262 ms
15,680 KB
testcase_11 AC 227 ms
15,392 KB
testcase_12 AC 296 ms
15,872 KB
testcase_13 AC 297 ms
16,056 KB
testcase_14 AC 301 ms
16,052 KB
testcase_15 AC 299 ms
15,844 KB
testcase_16 AC 221 ms
15,244 KB
testcase_17 AC 243 ms
15,420 KB
testcase_18 AC 314 ms
16,096 KB
testcase_19 AC 314 ms
16,132 KB
testcase_20 AC 316 ms
15,904 KB
testcase_21 AC 187 ms
9,896 KB
testcase_22 AC 244 ms
15,340 KB
testcase_23 AC 164 ms
9,640 KB
testcase_24 AC 320 ms
15,904 KB
testcase_25 AC 322 ms
15,864 KB
testcase_26 AC 321 ms
15,992 KB
testcase_27 AC 263 ms
15,144 KB
testcase_28 AC 381 ms
15,788 KB
testcase_29 AC 277 ms
15,264 KB
testcase_30 AC 390 ms
15,964 KB
testcase_31 AC 373 ms
15,808 KB
testcase_32 AC 395 ms
15,780 KB
testcase_33 AC 273 ms
15,412 KB
testcase_34 AC 179 ms
9,692 KB
testcase_35 AC 262 ms
15,264 KB
testcase_36 AC 366 ms
15,780 KB
testcase_37 AC 364 ms
15,908 KB
testcase_38 AC 368 ms
15,888 KB
testcase_39 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

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 g;
	return f;
}

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++){
		for(int j=0;j<2;j++){
			int incl=i;
			while(inc.size()&&(inc.top().first<=A[i])^j){
				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;
			seg_inc.set(i,{A[i],1});
			swap(inc,dec);
			swap(seg_inc,seg_dec);
		}
		sum+=mint(A[i])*A[i];
		ans+=sum;
	}

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