結果

問題 No.2867 NOT FOUND 404 Again
ユーザー Today03Today03
提出日時 2024-08-30 22:56:08
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 235 ms / 3,000 ms
コード長 2,424 bytes
コンパイル時間 3,172 ms
コンパイル使用メモリ 250,256 KB
実行使用メモリ 66,972 KB
最終ジャッジ日時 2024-08-30 22:56:25
合計ジャッジ時間 7,088 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 165 ms
66,972 KB
testcase_04 AC 188 ms
66,808 KB
testcase_05 AC 164 ms
66,784 KB
testcase_06 AC 161 ms
66,856 KB
testcase_07 AC 162 ms
66,864 KB
testcase_08 AC 186 ms
66,920 KB
testcase_09 AC 162 ms
66,932 KB
testcase_10 AC 162 ms
66,816 KB
testcase_11 AC 163 ms
66,916 KB
testcase_12 AC 185 ms
66,784 KB
testcase_13 AC 163 ms
66,892 KB
testcase_14 AC 163 ms
66,796 KB
testcase_15 AC 163 ms
66,756 KB
testcase_16 AC 177 ms
66,944 KB
testcase_17 AC 164 ms
66,960 KB
testcase_18 AC 102 ms
66,940 KB
testcase_19 AC 235 ms
66,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int INF = 1e9 + 10;
const ll INFL = 4e18;

#include <atcoder/modint>
using mint = atcoder::modint998244353;

int main() {
    string S;
    cin >> S;
    int N = S.size();

    // N以下の数であって、部分文字列として404を含まないものの個数
    // dp[i][j][k][l][m]:=i桁目までみていて、j:N未満が確定しているか、
    // k:2つ前の桁が4か、l:1つ前の桁が4か、m:1つ前の桁が0か
    mint dp[N + 1][2][2][2][2] = {};
    dp[0][0][0][0][0] = 1;
    for (int i = 0; i < N; i++) {
        int s = S[i] - '0';

        // N未満が確定
        for (int k = 0; k < 2; k++) {
            for (int l = 0; l < 2; l++) {
                for (int m = 0; m < 2; m++) {
                    // 次の桁が0
                    dp[i + 1][1][l][0][1] += dp[i][1][k][l][m];
                    // 次の桁が4
                    if (!(k && m)) dp[i + 1][1][l][1][0] += dp[i][1][k][l][m];
                    // それ以外
                    dp[i + 1][1][l][0][0] += dp[i][1][k][l][m] * 8;
                }
            }
        }

        // N未満が確定していない
        for (int k = 0; k < 2; k++) {
            for (int l = 0; l < 2; l++) {
                for (int m = 0; m < 2; m++) {
                    for (int d = 0; d < s; d++) {
                        if (d == 0) {
                            if (i == 0) continue;
                            dp[i + 1][1][l][0][1] += dp[i][0][k][l][m];
                        } else if (d == 4) {
                            if (!(k && m)) dp[i + 1][1][l][1][0] += dp[i][0][k][l][m];
                        } else {
                            dp[i + 1][1][l][0][0] += dp[i][0][k][l][m];
                        }
                    }
                    if ((s != 4) || (!(k && m))) dp[i + 1][0][l][s == 4][s == 0] += dp[i][0][k][l][m];
                }
            }
        }

        // 次の桁から始める
        if (i > 0) {
            dp[i + 1][1][0][1][0] += 1;
            dp[i + 1][1][0][0][0] += 8;
        }
    }

    mint ans = 0;
    for (int j = 0; j < 2; j++) {
        for (int k = 0; k < 2; k++) {
            for (int l = 0; l < 2; l++) {
                for (int m = 0; m < 2; m++) {
                    ans += dp[N][j][k][l][m];
                }
            }
        }
    }
    cout << ans.val() << endl;
}
0