結果

問題 No.2772 Appearing Even Times
ユーザー Abhishek ChoudharyAbhishek Choudhary
提出日時 2024-05-31 23:06:28
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 1,090 ms / 4,000 ms
コード長 970 bytes
コンパイル時間 3,935 ms
コンパイル使用メモリ 273,844 KB
実行使用メモリ 324,552 KB
最終ジャッジ日時 2024-05-31 23:06:48
合計ジャッジ時間 18,448 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
323,388 KB
testcase_01 AC 110 ms
323,460 KB
testcase_02 AC 110 ms
323,324 KB
testcase_03 AC 110 ms
323,424 KB
testcase_04 AC 109 ms
323,448 KB
testcase_05 AC 109 ms
323,512 KB
testcase_06 AC 106 ms
323,380 KB
testcase_07 AC 110 ms
323,560 KB
testcase_08 AC 1,090 ms
324,404 KB
testcase_09 AC 1,021 ms
324,280 KB
testcase_10 AC 85 ms
323,292 KB
testcase_11 AC 85 ms
323,336 KB
testcase_12 AC 1,015 ms
324,552 KB
testcase_13 AC 1,020 ms
324,436 KB
testcase_14 AC 1,066 ms
324,304 KB
testcase_15 AC 987 ms
324,236 KB
testcase_16 AC 1,024 ms
324,436 KB
testcase_17 AC 1,015 ms
324,364 KB
testcase_18 AC 1,018 ms
324,240 KB
testcase_19 AC 1,013 ms
324,272 KB
testcase_20 AC 976 ms
324,244 KB
testcase_21 AC 1,006 ms
324,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

const int M = 998244353;
const int MAX_LENGTH = 10001;
const int MAX_TIGHT = 2;
const int MAX_NZSEEN = 2;
const int MAX_MASK = (1 << 11) - 1;

int dp[MAX_LENGTH][MAX_TIGHT][MAX_NZSEEN][MAX_MASK];

int count(const std::string& num, int i, bool tight, bool nzseen, int mask) {
    if (i >= static_cast<int>(num.length())) {
        return (mask == 0 && nzseen);
    }

    int& result = dp[i][tight][nzseen][mask];
    if (result != -1) {
        return result;
    }

    int maxd = 9;
    if (tight) {
        maxd = num[i] - '0';
    }

    result = 0;
    for (int d = 0; d <= maxd; d++) {
        bool newNzseen = nzseen || (d != 0);
        result += count(num, i + 1, tight && (d == maxd), newNzseen, mask ^ (1 << d) * newNzseen);
        result %= M;
    }

    return result;
}

int main() {
    std::string n;
    std::cin >> n;

    memset(dp, -1, sizeof(dp));
    std::cout << count(n, 0, true, false, 0) << std::endl;
    return 0;
}
0