結果

問題 No.2433 Min Increasing Sequence
ユーザー cho435cho435
提出日時 2023-08-21 23:23:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 4,825 ms
コンパイル使用メモリ 265,412 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-05-09 05:23:32
合計ジャッジ時間 8,986 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,376 KB
testcase_04 AC 116 ms
9,600 KB
testcase_05 AC 62 ms
6,400 KB
testcase_06 AC 92 ms
9,216 KB
testcase_07 AC 67 ms
6,656 KB
testcase_08 AC 109 ms
9,472 KB
testcase_09 AC 104 ms
8,960 KB
testcase_10 AC 40 ms
6,016 KB
testcase_11 AC 65 ms
6,656 KB
testcase_12 AC 35 ms
5,376 KB
testcase_13 AC 29 ms
5,376 KB
testcase_14 AC 73 ms
6,784 KB
testcase_15 AC 30 ms
5,376 KB
testcase_16 AC 37 ms
5,376 KB
testcase_17 AC 27 ms
5,376 KB
testcase_18 AC 107 ms
9,600 KB
testcase_19 AC 108 ms
9,472 KB
testcase_20 AC 8 ms
5,376 KB
testcase_21 AC 96 ms
9,344 KB
testcase_22 AC 106 ms
9,600 KB
testcase_23 AC 94 ms
9,216 KB
testcase_24 AC 110 ms
9,600 KB
testcase_25 AC 100 ms
9,472 KB
testcase_26 AC 79 ms
9,088 KB
testcase_27 AC 96 ms
9,216 KB
testcase_28 AC 87 ms
9,088 KB
testcase_29 AC 19 ms
5,376 KB
testcase_30 AC 18 ms
5,376 KB
testcase_31 AC 14 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
using mint = atcoder::modint998244353;

pair<int,int> op(pair<int,int> p,pair<int,int> q){
	return min(p,q);
}
pair<int,int> e(){
	return {1e9+10,-1};
}
using segtree=atcoder::segtree<pair<int,int>,op,e>;

int main(){
	int n;
	cin>>n;
	vector<int> a(n);
	rep(i,n) cin>>a.at(i);
	segtree seg(n);
	rep(i,n) seg.set(i,{a.at(i),i});
	auto[mn,l]=seg.all_prod();
	mint ans=1;
	while(l+1<n){
		auto[mn,lr]=seg.prod(l+1,n);
		if(mn>1e9) break;
		ans*=(lr-l+1);
		l=lr;
	}
	cout<<ans.val()<<endl;
}
0