結果

問題 No.315 世界のなんとか3.5
ユーザー mkawa2mkawa2
提出日時 2024-09-24 00:15:41
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,647 bytes
コンパイル時間 5,689 ms
コンパイル使用メモリ 101,068 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-24 06:06:03
合計ジャッジ時間 15,751 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 WA -
testcase_12 AC 201 ms
6,940 KB
testcase_13 AC 160 ms
6,940 KB
testcase_14 WA -
testcase_15 AC 315 ms
6,944 KB
testcase_16 AC 315 ms
6,940 KB
testcase_17 AC 315 ms
6,944 KB
testcase_18 AC 160 ms
6,940 KB
testcase_19 AC 161 ms
6,944 KB
testcase_20 AC 161 ms
6,940 KB
testcase_21 AC 163 ms
6,940 KB
testcase_22 AC 316 ms
6,940 KB
testcase_23 AC 317 ms
6,944 KB
testcase_24 AC 316 ms
6,944 KB
testcase_25 AC 317 ms
6,944 KB
testcase_26 AC 315 ms
6,940 KB
testcase_27 AC 316 ms
6,940 KB
testcase_28 AC 317 ms
6,940 KB
testcase_29 AC 627 ms
6,940 KB
testcase_30 AC 628 ms
6,940 KB
testcase_31 AC 625 ms
6,944 KB
testcase_32 AC 710 ms
6,940 KB
testcase_33 AC 325 ms
6,940 KB
testcase_34 AC 623 ms
6,940 KB
testcase_35 AC 628 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'long long int digitdp(std::vector<int>&, bool, int)':
main.cpp:48:17: warning: 's' may be used uninitialized [-Wmaybe-uninitialized]
   48 |             int s;
      |                 ^

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

const int md = 1e9 + 7;

long long digitdp(vector<int>& aa, bool eq, int p) {
    int k = to_string(p).length();
    p = stoi(to_string(p));
    long long res = 0;
    vector<vector<long long>> dp(2, vector<long long>(24, 0));
    int jf = 0, jm = 0;

    for (size_t i = 0; i < aa.size(); ++i) {
        vector<vector<long long>> ndp(2, vector<long long>(24, 0));
        // Transition from less than confirmed
        for (int f = 0; f < 2; ++f) {
            for (int m = 0; m < 24; ++m) {
                long long pre = dp[f][m] % md;
                if (pre == 0) continue;
                for (int d = 0; d < 10; ++d) {
                    int nf = f | (d == 3);
                    int nm = (m * 10 + d) % 24;
                    ndp[nf][nm] += pre;
                }
            }
        }
        // Transition from exactly
        for (int d = (i == 0); d < aa[i]; ++d) {
            int nf = jf | (d == 3);
            int nm = (jm * 10 + d) % 24;
            ndp[nf][nm] += 1;
        }
        // Start from this digit
        if (i) {
            for (int d = 1; d < 10; ++d) {
                ndp[d == 3][d] += 1;
            }
        }
        // Update exactly
        jf |= (aa[i] == 3);
        jm = (jm * 10 + aa[i]) % 24;

        dp = ndp;

        if (i == aa.size() - k) {
            int s;
            for (int j=i+1;j<aa.size();j++) s+=aa[i];
            if ((jf || jm % 3 == 0) && jm % 8 == 0 && s) res -= 1;
            for (int f = 0; f < 2; ++f) {
                for (int m = 0; m < 24; ++m) {
                    if ((f || m % 3 == 0) && m % 8 == 0) {
                        res -= dp[f][m];
                        res %= md;
                    }
                }
            }
        }
    }

    if (eq) {
        long long pos = 0;
        int l = max(0, (int)aa.size() - 5);
        for (size_t i = l; i < aa.size(); ++i) {
            pos = (pos * 10 + aa[i]) % p;
        }
        if ((jf || jm % 3 == 0) && pos) res += 1;
    }
    for (int f = 0; f < 2; ++f) {
        for (int m = 0; m < 24; ++m) {
            if (f || m % 3 == 0) {
                res += dp[f][m];
                res %= md;
            }
        }
    }

    return res;
}

int main() {
    string a, b, p;
    cin >> a >> b >> p;

    vector<int> aa(a.size()), bb(b.size());
    for (size_t i = 0; i < a.size(); ++i) aa[i] = a[i] - '0';
    for (size_t i = 0; i < b.size(); ++i) bb[i] = b[i] - '0';
    
    int k = p.size();
    long long ans = digitdp(bb, true, stoi(p)) - digitdp(aa, false, stoi(p));
    cout << (ans % md + md) % md << endl;

    return 0;
}

0