結果

問題 No.2950 Max Min Product
ユーザー kmjpkmjp
提出日時 2024-10-26 00:01:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 328 ms / 3,000 ms
コード長 2,340 bytes
コンパイル時間 3,129 ms
コンパイル使用メモリ 219,796 KB
実行使用メモリ 39,948 KB
最終ジャッジ日時 2024-10-26 00:01:53
合計ジャッジ時間 14,017 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
36,040 KB
testcase_01 AC 16 ms
36,048 KB
testcase_02 AC 16 ms
36,076 KB
testcase_03 AC 187 ms
39,196 KB
testcase_04 AC 197 ms
39,440 KB
testcase_05 AC 200 ms
39,244 KB
testcase_06 AC 243 ms
39,688 KB
testcase_07 AC 264 ms
39,820 KB
testcase_08 AC 237 ms
39,692 KB
testcase_09 AC 142 ms
38,024 KB
testcase_10 AC 235 ms
39,496 KB
testcase_11 AC 202 ms
39,436 KB
testcase_12 AC 240 ms
39,692 KB
testcase_13 AC 243 ms
39,816 KB
testcase_14 AC 237 ms
39,688 KB
testcase_15 AC 283 ms
39,720 KB
testcase_16 AC 208 ms
39,188 KB
testcase_17 AC 229 ms
39,296 KB
testcase_18 AC 280 ms
39,824 KB
testcase_19 AC 278 ms
39,948 KB
testcase_20 AC 278 ms
39,820 KB
testcase_21 AC 167 ms
38,036 KB
testcase_22 AC 198 ms
39,312 KB
testcase_23 AC 141 ms
38,048 KB
testcase_24 AC 243 ms
39,816 KB
testcase_25 AC 241 ms
39,944 KB
testcase_26 AC 239 ms
39,824 KB
testcase_27 AC 224 ms
37,792 KB
testcase_28 AC 326 ms
39,480 KB
testcase_29 AC 242 ms
38,388 KB
testcase_30 AC 315 ms
38,168 KB
testcase_31 AC 292 ms
39,244 KB
testcase_32 AC 314 ms
38,324 KB
testcase_33 AC 234 ms
37,164 KB
testcase_34 AC 160 ms
36,756 KB
testcase_35 AC 224 ms
37,156 KB
testcase_36 AC 328 ms
37,548 KB
testcase_37 AC 299 ms
37,556 KB
testcase_38 AC 298 ms
37,560 KB
testcase_39 AC 16 ms
35,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int N;
ll A[202020];
const ll mo=998244353;

template<class V,int NV> class SegTree_Mul {
public:
	vector<V> sum,mul; // sum stores val after muladd
	SegTree_Mul(){
		sum.resize(NV*2,1); mul.resize(NV*2,1);
		for(int i=NV-1;i>=1;i--) sum[i]=sum[i*2]+sum[i*2+1];
	};

	V getval(int x,int y,int l=0,int r=NV,int k=1) {
		if(r<=x || y<=l) return 0;
		if(x<=l && r<=y) return sum[k];
		x=max(x,l);
		y=min(y,r);
		V ret=getval(x,y,l,(l+r)/2,k*2)+getval(x,y,(l+r)/2,r,k*2+1);
		return (ret*mul[k])%mo;
	}

	void domul(int x,int y,V v,int l=0,int r=NV,int k=1) {
		if(l>=r) return;
		if(x<=l && r<=y) {
			(mul[k]*=v)%=mo;
			(sum[k]*=v)%=mo;
		}
		else if(l < y && x < r) {
			domul(x,y,v,l,(l+r)/2,k*2);
			domul(x,y,v,(l+r)/2,r,k*2+1);
			sum[k]=(sum[k*2]+sum[k*2+1])*mul[k]%mo;
		}
	}
};
SegTree_Mul<ll,1<<20> st;

ll modpow(ll a, ll n = mo-2) {
	ll r=1;a%=mo;
	while(n) r=r*((n%2)?a:1)%mo,a=a*a%mo,n>>=1;
	return r;
}

vector<pair<int,int>> MA,MI;

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	ll ret=0;
	cin>>N;
	FOR(i,N) {
		cin>>A[i];
	}
	
	MA={{1<<30,N}};
	MI={{0,N}};
	for(i=N-1;i>=0;i--) {
		st.domul(i,i+1,A[i]*A[i]%mo);
		while(MA.back().first<A[i]) {
			x=MA.back().first;
			y=MA.back().second;
			MA.pop_back();
			st.domul(y,MA.back().second,modpow(x)*A[i]%mo);
		}
		while(MI.back().first>A[i]) {
			x=MI.back().first;
			y=MI.back().second;
			MI.pop_back();
			st.domul(y,MI.back().second,modpow(x)*A[i]%mo);
		}
		MA.push_back({A[i],i});
		MI.push_back({A[i],i});
		
		(ret+=st.getval(i,N))%=mo;
	}
	cout<<ret<<endl;
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0