結果

問題 No.2867 NOT FOUND 404 Again
ユーザー tottoripapertottoripaper
提出日時 2024-09-03 02:16:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 295 ms / 3,000 ms
コード長 1,305 bytes
コンパイル時間 2,412 ms
コンパイル使用メモリ 206,248 KB
実行使用メモリ 58,936 KB
最終ジャッジ日時 2024-09-03 02:16:27
合計ジャッジ時間 8,523 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,948 KB
testcase_03 AC 268 ms
58,892 KB
testcase_04 AC 268 ms
58,732 KB
testcase_05 AC 270 ms
58,760 KB
testcase_06 AC 295 ms
58,860 KB
testcase_07 AC 267 ms
58,736 KB
testcase_08 AC 270 ms
58,820 KB
testcase_09 AC 268 ms
58,880 KB
testcase_10 AC 292 ms
58,860 KB
testcase_11 AC 269 ms
58,732 KB
testcase_12 AC 269 ms
58,836 KB
testcase_13 AC 269 ms
58,872 KB
testcase_14 AC 269 ms
58,936 KB
testcase_15 AC 293 ms
58,760 KB
testcase_16 AC 270 ms
58,884 KB
testcase_17 AC 269 ms
58,900 KB
testcase_18 AC 271 ms
58,908 KB
testcase_19 AC 272 ms
58,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int main(){
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    std::string S;
    std::cin >> S;

    int n = S.size();
    std::vector dp(n + 1, std::vector<int>(6, 0));
    dp[0][1 + 0 * 2] = 1;

    constexpr int MOD = 998244353;
    auto trans = [](int ai, int ni, int s){
        int s1 = s % 2, s2 = s / 2;
        int ns1;
        if(s1 == 1){
            ns1 = ai <= ni;
        }else{
            ns1 = ai < ni;
        }
        int ns2;
        if(s2 == 0 && ai == 4){
            ns2 = 1;
        }else if(s2 == 1 && ai == 0){
            ns2 = 2;
        }else if(s2 == 2 && ai == 4){
            ns2 = 3;
        }else if(ai == 4){
            ns2 = 1;
        }else{
            ns2 = 0;
        }
        return ns1 + ns2 * 2;
    };
    for(int i=0;i<n;i++){
        for(int s=0;s<6;s++){
            for(int ai=0;ai<=9;ai++){
                int ns = trans(ai, S[n - 1 - i] - '0', s);
                if(ns / 2 < 3){
                    dp[i + 1][ns] += dp[i][s];
                    if(dp[i + 1][ns] >= MOD){dp[i + 1][ns] -= MOD;}
                }
            }
        }
    }

    int res = -1;
    for(int s2=0;s2<3;s2++){
        res += dp[n][1 + s2 * 2];
        if(res >= MOD){res -= MOD;}
    }

    std::cout << res << std::endl;
}
0