結果

問題 No.2433 Min Increasing Sequence
ユーザー kwm_tkwm_t
提出日時 2023-08-18 23:14:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 1,620 bytes
コンパイル時間 3,923 ms
コンパイル使用メモリ 268,100 KB
実行使用メモリ 31,504 KB
最終ジャッジ日時 2023-08-18 23:15:08
合計ジャッジ時間 7,493 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,384 KB
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 1 ms
4,384 KB
testcase_03 AC 1 ms
4,384 KB
testcase_04 AC 143 ms
31,504 KB
testcase_05 AC 64 ms
16,532 KB
testcase_06 AC 64 ms
27,028 KB
testcase_07 AC 49 ms
18,060 KB
testcase_08 AC 78 ms
29,624 KB
testcase_09 AC 22 ms
10,144 KB
testcase_10 AC 37 ms
12,580 KB
testcase_11 AC 83 ms
16,480 KB
testcase_12 AC 33 ms
11,464 KB
testcase_13 AC 25 ms
10,048 KB
testcase_14 AC 82 ms
20,756 KB
testcase_15 AC 28 ms
10,192 KB
testcase_16 AC 36 ms
12,020 KB
testcase_17 AC 25 ms
9,584 KB
testcase_18 AC 138 ms
29,884 KB
testcase_19 AC 140 ms
30,296 KB
testcase_20 AC 6 ms
4,648 KB
testcase_21 AC 114 ms
27,208 KB
testcase_22 AC 135 ms
29,896 KB
testcase_23 AC 110 ms
26,740 KB
testcase_24 AC 167 ms
30,400 KB
testcase_25 AC 121 ms
28,336 KB
testcase_26 AC 92 ms
23,516 KB
testcase_27 AC 112 ms
27,308 KB
testcase_28 AC 95 ms
25,180 KB
testcase_29 AC 18 ms
7,288 KB
testcase_30 AC 16 ms
7,004 KB
testcase_31 AC 13 ms
6,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
using mint = modint998244353;
const int mod = 998244353;
const int INF = 1e9;
//const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
P op(P a, P b) {
	if (a.first < b.first)return a;
	else if (a.first > b.first)return b;
	else if (a.second < b.second)return a;
	return b;
}
P e() { return { INF,INF }; }// min
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n; cin >> n;
	vector<int>a(n);
	rep(i, n)cin >> a[i];
	map<int, vector<int>>mp;
	rep(i, n) mp[a[i]].push_back(i);
	vector<P>p(n);
	rep(i, n)p[i] = { a[i],i };
	segtree<P, op, e>seg(p);
	int idx = -1;
	mint ans = 1;
	while (idx + 1 < n) {
		auto get = seg.prod(idx + 1, n);
		auto v = mp[get.first];
		reverse(all(v));
		while (v.size() && v.back() <= idx) {
			v.pop_back();
		}
		if (-1 != idx)v.push_back(idx);
		reverse(all(v));
		rep(i, v.size() - 1) {
			ans *= v[i+1] - v[i] + 1;
		}
		idx = v.back();
	}
	cout << ans.val() << endl;
	return 0;
}
0