結果

問題 No.2433 Min Increasing Sequence
ユーザー noya2noya2
提出日時 2023-08-11 20:40:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 2,099 ms
コンパイル使用メモリ 208,716 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-18 14:56:56
合計ジャッジ時間 4,868 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 76 ms
6,816 KB
testcase_05 AC 38 ms
6,816 KB
testcase_06 AC 65 ms
6,816 KB
testcase_07 AC 42 ms
6,820 KB
testcase_08 AC 73 ms
6,820 KB
testcase_09 AC 56 ms
6,816 KB
testcase_10 AC 26 ms
6,816 KB
testcase_11 AC 40 ms
6,816 KB
testcase_12 AC 25 ms
6,816 KB
testcase_13 AC 20 ms
6,816 KB
testcase_14 AC 50 ms
6,820 KB
testcase_15 AC 21 ms
6,820 KB
testcase_16 AC 26 ms
6,820 KB
testcase_17 AC 18 ms
6,816 KB
testcase_18 AC 71 ms
6,820 KB
testcase_19 AC 73 ms
6,816 KB
testcase_20 AC 6 ms
6,820 KB
testcase_21 AC 62 ms
6,816 KB
testcase_22 AC 70 ms
6,816 KB
testcase_23 AC 62 ms
6,816 KB
testcase_24 AC 73 ms
6,820 KB
testcase_25 AC 65 ms
6,820 KB
testcase_26 AC 52 ms
6,816 KB
testcase_27 AC 62 ms
6,816 KB
testcase_28 AC 57 ms
6,820 KB
testcase_29 AC 14 ms
6,820 KB
testcase_30 AC 12 ms
6,816 KB
testcase_31 AC 9 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/modint>
using namespace std;
using mint = atcoder::modint998244353;

int main(){
    int n; cin >> n;
    vector<int> a(n);
    for (int i = 0; i < n; i++) cin >> a[i];
    vector<pair<int,int>> b(n+1);
    b[n].first = 1'000'000'001;
    vector<mint> dp(n+1,0);
    dp[n] = 1;
    for (int i = n-1; i >= 0; i--){
        if (b[i+1].first >= a[i]){
            b[i] = make_pair(a[i],i);
        }
        else {
            b[i] = b[i+1];
        }
        int l = b[i].second;
        mint cur = dp[l+1];
        dp[i] = dp[i+1] + cur;
        if (i == 0){
            cout << cur.val() << endl;
        }
    }
}
0