結果

問題 No.2950 Max Min Product
ユーザー shobonvipshobonvip
提出日時 2024-10-25 22:18:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,544 bytes
コンパイル時間 4,748 ms
コンパイル使用メモリ 275,216 KB
実行使用メモリ 18,272 KB
最終ジャッジ日時 2024-10-25 23:30:54
合計ジャッジ時間 27,169 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 381 ms
17,044 KB
testcase_04 AC 418 ms
17,156 KB
testcase_05 AC 394 ms
17,212 KB
testcase_06 AC 550 ms
18,136 KB
testcase_07 AC 553 ms
18,168 KB
testcase_08 AC 553 ms
18,160 KB
testcase_09 AC 269 ms
10,812 KB
testcase_10 AC 481 ms
17,592 KB
testcase_11 AC 416 ms
17,220 KB
testcase_12 AC 550 ms
18,096 KB
testcase_13 AC 552 ms
18,220 KB
testcase_14 AC 549 ms
18,156 KB
testcase_15 AC 575 ms
17,864 KB
testcase_16 AC 429 ms
16,780 KB
testcase_17 AC 471 ms
17,008 KB
testcase_18 AC 605 ms
18,120 KB
testcase_19 AC 607 ms
18,112 KB
testcase_20 AC 607 ms
18,064 KB
testcase_21 AC 367 ms
11,164 KB
testcase_22 AC 489 ms
16,932 KB
testcase_23 AC 323 ms
10,824 KB
testcase_24 AC 646 ms
18,120 KB
testcase_25 AC 646 ms
18,184 KB
testcase_26 AC 647 ms
18,128 KB
testcase_27 AC 577 ms
16,624 KB
testcase_28 AC 843 ms
17,900 KB
testcase_29 AC 621 ms
16,696 KB
testcase_30 AC 871 ms
18,036 KB
testcase_31 AC 815 ms
18,192 KB
testcase_32 AC 868 ms
18,036 KB
testcase_33 AC 614 ms
16,928 KB
testcase_34 AC 399 ms
10,660 KB
testcase_35 AC 596 ms
16,872 KB
testcase_36 AC 832 ms
18,272 KB
testcase_37 AC 832 ms
18,120 KB
testcase_38 AC 835 ms
18,128 KB
testcase_39 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
	author:  shobonvip
	created: 2024.10.25 22:03:11
**/

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

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}


struct S{
	mint val;
	ll len;
};

struct F{
	mint b;
	mint c;
};

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

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

S mapping(F f, S x){
	return {f.b * x.val + f.c * x.len, x.len};
}

F composition(F g, F f){
	return {f.b * g.b, f.c * g.b + g.c};
}

F id(){
	return {1, 0};
}

int main(){
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	
	int n; cin >> n;
	vector<ll> a(n);
	rep(i,0,n){
		cin >> a[i];
	}

	vector<int> max_st = {(int)1e9+20};
	vector<int> max_ind = {0};
	vector<int> min_st = {-1};
	vector<int> min_ind = {0};

	set<pair<int,int>> bad_points;
	lazy_segtree<S,op,e,F,mapping,composition,id> seg(vector<S>(n,S{1,1}));

	mint ans = 0;
	rep(i,0,n){
		{
			int now = i;
			while(a[i] >= max_st.back()) {
				int val = max_st.back();
				max_ind.pop_back();
				int tar = max_ind.back();
				seg.apply(tar, now, F{mint(val).inv(), 0});
				max_st.pop_back();
				now = tar;
			}
			seg.apply(now, i+1, F{a[i], 0});
			max_st.push_back(a[i]);
			max_ind.push_back(i+1);
		}
		
		{
			int now = i;
			while(a[i] <= min_st.back()) {
				int val = min_st.back();
				min_ind.pop_back();
				int tar = min_ind.back();
				seg.apply(tar, now, F{mint(val).inv(), 0});
				min_st.pop_back();
				now = tar;
			}
			seg.apply(now, i+1, F{a[i], 0});
			min_st.push_back(a[i]);
			min_ind.push_back(i+1);
		}

		ans += seg.prod(0, i+1).val;
		//cout << ans.val() << '\n';
	}	
	cout << ans.val() << '\n';
}

0