結果

問題 No.2433 Min Increasing Sequence
ユーザー otoshigootoshigo
提出日時 2023-08-11 16:24:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 2,106 ms
コンパイル使用メモリ 203,020 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-04-29 09:23:09
合計ジャッジ時間 4,602 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 29 ms
7,168 KB
testcase_05 AC 15 ms
5,376 KB
testcase_06 AC 25 ms
6,400 KB
testcase_07 AC 17 ms
5,376 KB
testcase_08 AC 27 ms
6,784 KB
testcase_09 AC 21 ms
6,016 KB
testcase_10 AC 11 ms
5,376 KB
testcase_11 AC 17 ms
5,504 KB
testcase_12 AC 11 ms
5,376 KB
testcase_13 AC 9 ms
5,376 KB
testcase_14 AC 20 ms
5,760 KB
testcase_15 AC 9 ms
5,376 KB
testcase_16 AC 11 ms
5,376 KB
testcase_17 AC 9 ms
5,376 KB
testcase_18 AC 28 ms
6,912 KB
testcase_19 AC 28 ms
6,912 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 25 ms
6,528 KB
testcase_22 AC 28 ms
6,912 KB
testcase_23 AC 24 ms
6,400 KB
testcase_24 AC 28 ms
7,040 KB
testcase_25 AC 26 ms
6,656 KB
testcase_26 AC 20 ms
5,888 KB
testcase_27 AC 25 ms
6,528 KB
testcase_28 AC 23 ms
6,144 KB
testcase_29 AC 7 ms
5,376 KB
testcase_30 AC 6 ms
5,376 KB
testcase_31 AC 5 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const ll MOD = 998244353;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N;
    cin >> N;
    vector<int> A(N);
    for (int i = 0; i < N; i++) cin >> A[i];
    vector<ll> dp(N + 1), S(N + 1);
    dp[N] = 1;
    S[N] = 1;
    int l = N - 1;
    for (int i = N - 1; i >= 0; i--) {
        if (A[i] <= A[l]) l = i;
        dp[i] = S[l + 1];
        S[i] = (S[i + 1] + dp[i]) % MOD;
    }
    cout << dp[0] << "\n";
}
0