結果

問題 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  
実行時間 168 ms / 2,000 ms
コード長 1,620 bytes
コンパイル時間 4,188 ms
コンパイル使用メモリ 271,812 KB
実行使用メモリ 31,616 KB
最終ジャッジ日時 2024-05-06 05:52:36
合計ジャッジ時間 8,087 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 168 ms
31,616 KB
testcase_05 AC 64 ms
16,640 KB
testcase_06 AC 68 ms
27,264 KB
testcase_07 AC 46 ms
18,176 KB
testcase_08 AC 75 ms
29,696 KB
testcase_09 AC 24 ms
10,124 KB
testcase_10 AC 38 ms
12,800 KB
testcase_11 AC 60 ms
16,768 KB
testcase_12 AC 34 ms
11,776 KB
testcase_13 AC 28 ms
9,856 KB
testcase_14 AC 85 ms
20,992 KB
testcase_15 AC 29 ms
10,240 KB
testcase_16 AC 38 ms
12,160 KB
testcase_17 AC 27 ms
9,728 KB
testcase_18 AC 149 ms
30,208 KB
testcase_19 AC 156 ms
30,208 KB
testcase_20 AC 7 ms
5,376 KB
testcase_21 AC 133 ms
27,648 KB
testcase_22 AC 152 ms
30,080 KB
testcase_23 AC 124 ms
27,008 KB
testcase_24 AC 159 ms
30,592 KB
testcase_25 AC 138 ms
28,544 KB
testcase_26 AC 101 ms
23,936 KB
testcase_27 AC 132 ms
27,392 KB
testcase_28 AC 127 ms
25,600 KB
testcase_29 AC 21 ms
7,424 KB
testcase_30 AC 18 ms
7,168 KB
testcase_31 AC 13 ms
6,272 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