結果

問題 No.2867 NOT FOUND 404 Again
ユーザー rlangevinrlangevin
提出日時 2024-11-17 12:43:15
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 2,660 ms / 3,000 ms
コード長 1,843 bytes
コンパイル時間 1,516 ms
コンパイル使用メモリ 122,240 KB
実行使用メモリ 8,272 KB
最終ジャッジ日時 2024-11-17 12:43:58
合計ジャッジ時間 40,514 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 1,882 ms
8,220 KB
testcase_04 AC 1,911 ms
8,084 KB
testcase_05 AC 1,930 ms
8,212 KB
testcase_06 AC 1,921 ms
8,268 KB
testcase_07 AC 1,879 ms
8,176 KB
testcase_08 AC 1,919 ms
8,196 KB
testcase_09 AC 1,913 ms
8,232 KB
testcase_10 AC 1,882 ms
8,184 KB
testcase_11 AC 1,903 ms
8,168 KB
testcase_12 AC 1,929 ms
8,236 KB
testcase_13 AC 1,914 ms
8,216 KB
testcase_14 AC 1,880 ms
8,208 KB
testcase_15 AC 1,897 ms
8,272 KB
testcase_16 AC 1,882 ms
8,184 KB
testcase_17 AC 1,893 ms
8,192 KB
testcase_18 AC 1,035 ms
8,228 KB
testcase_19 AC 2,660 ms
8,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>

using namespace std;

const int MOD = 998244353;

int main() {
    string input;
    cin >> input;

    vector<int> N(input.size());
    for (size_t i = 0; i < input.size(); ++i) {
        N[i] = input[i] - '0';
    }

    vector<int> pre0(100, 0), pre1(100, 0);

    if (N.size() <= 2) {
        string ans = "";
        for (int n : N) {
            ans += to_string(n);
        }
        cout << ans << endl;
        return 0;
    }

    int st = N[0] * 10 + N[1];
    for (int i = 0; i < st; ++i) {
        pre0[i] = 1;
    }
    pre1[st] = 1;
    vector<int> dp0(100, 0), dp1(100, 0);
    for (size_t k = 2; k < N.size(); ++k) {
        int n = N[k];
        fill(dp0.begin(), dp0.end(), 0);
        fill(dp1.begin(), dp1.end(), 0);
        for (int a = 0; a < 10; ++a) {
            for (int b = 0; b < 10; ++b) {
                if (pre0[a*10+b] == 0 && pre1[a*10+b] == 0) continue;
                for (int c = 0; c < 10; ++c) {
                    if (a == 4 && b == 0 && c == 4) continue;
                    dp0[b * 10 + c] = (dp0[b * 10 + c] + pre0[a * 10 + b]) % MOD;
                }
                if (a != 4 || b != 0 || n != 4) {
                    dp1[b * 10 + n] = (dp1[b * 10 + n] + pre1[a * 10 + b]) % MOD;
                }
                for (int c = 0; c < n; ++c) {
                    if (a == 4 && b == 0 && c == 4) continue;
                    dp0[b * 10 + c] = (dp0[b * 10 + c] + pre1[a * 10 + b]) % MOD;
                }
            }
        }
        pre0.swap(dp0);
        pre1.swap(dp1);
    }

    int ans = -1;
    for (int i = 0; i < 10; ++i) {
        for (int j = 0; j < 10; ++j) {
            ans = (ans + pre0[i * 10 + j]) % MOD;
            ans = (ans + pre1[i * 10 + j]) % MOD;
        }
    }

    cout << ans << endl;
    return 0;
}
0