結果

問題 No.315 世界のなんとか3.5
ユーザー tsutajtsutaj
提出日時 2018-07-05 18:23:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,393 ms / 2,000 ms
コード長 2,651 bytes
コンパイル時間 1,612 ms
コンパイル使用メモリ 171,220 KB
実行使用メモリ 154,128 KB
最終ジャッジ日時 2024-07-01 02:38:52
合計ジャッジ時間 18,973 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
153,428 KB
testcase_01 AC 64 ms
153,556 KB
testcase_02 AC 63 ms
153,540 KB
testcase_03 AC 63 ms
153,564 KB
testcase_04 AC 61 ms
153,552 KB
testcase_05 AC 63 ms
153,552 KB
testcase_06 AC 63 ms
153,436 KB
testcase_07 AC 62 ms
153,548 KB
testcase_08 AC 63 ms
153,312 KB
testcase_09 AC 63 ms
153,436 KB
testcase_10 AC 62 ms
153,484 KB
testcase_11 AC 62 ms
153,424 KB
testcase_12 AC 323 ms
153,652 KB
testcase_13 AC 322 ms
153,636 KB
testcase_14 AC 580 ms
153,800 KB
testcase_15 AC 581 ms
153,784 KB
testcase_16 AC 584 ms
153,780 KB
testcase_17 AC 582 ms
153,824 KB
testcase_18 AC 324 ms
153,884 KB
testcase_19 AC 324 ms
153,648 KB
testcase_20 AC 324 ms
153,696 KB
testcase_21 AC 328 ms
153,604 KB
testcase_22 AC 581 ms
153,728 KB
testcase_23 AC 582 ms
153,700 KB
testcase_24 AC 579 ms
153,796 KB
testcase_25 AC 580 ms
153,736 KB
testcase_26 AC 579 ms
153,676 KB
testcase_27 AC 581 ms
153,672 KB
testcase_28 AC 576 ms
153,728 KB
testcase_29 AC 964 ms
153,996 KB
testcase_30 AC 965 ms
154,128 KB
testcase_31 AC 966 ms
154,032 KB
testcase_32 AC 1,098 ms
153,884 KB
testcase_33 AC 585 ms
153,836 KB
testcase_34 AC 1,096 ms
154,060 KB
testcase_35 AC 1,393 ms
153,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const long long int MOD = 1000000007LL;
long long int dp[200010][3][8][2][2];

void fastadd(long long int &A, long long int B) {
    A += B;
    if(A >= MOD) A -= MOD;
}

void fastsub(long long int &A, long long int B) {
    A = A - B + MOD;
    if(A >= MOD) A -= MOD;
}

long long int solve(string s, int P) {
    int d = 0, cP = P;
    while(cP % 10 == 0) d++, cP /= 10;

    long long int N = s.length(), ret = 0;
    memset(dp, 0, sizeof(dp));
    dp[0][0][0][0][0] = 1;
    for(int i=0; i<=N; i++) {
        for(int mod3=0; mod3<3; mod3++) {
            for(int mod8=0; mod8<8; mod8++) {
                for(int inc3=0; inc3<2; inc3++) {
                    for(int f=0; f<2; f++) {
                        if(N - i == d) {
                            int nmod3 = mod3, nmod8 = mod8;
                            for(int k=0; k<d; k++) nmod3 *= 10, nmod8 *= 10;

                            bool ok = true;
                            if(nmod3 % 3 != 0 && inc3 == 0) ok = false;
                            if(nmod8 % P != 0) ok = false;
                            
                            if(ok) {
                                fastsub(ret, dp[i][mod3][mod8][inc3][f]);
                            }
                        }

                        if(i == N) continue;
                        int lim = f ? 9 : s[i] - '0';
                        for(int x=0; x<=lim; x++) {
                            int nmod3 = (mod3 * 10 + x) % 3;
                            int nmod8 = (mod8 * 10 + x) % 8;
                            int ninc3 = (inc3 || x == 3);
                            fastadd(dp[i+1][nmod3][nmod8][ninc3][f || x < lim], dp[i][mod3][mod8][inc3][f]);
                        }
                    }
                }
            }
        }
    }

    for(int mod3=0; mod3<3; mod3++) {
        for(int inc3=0; inc3<2; inc3++) {
            if(mod3 != 0 && inc3 == 0) continue;
            for(int mod8=0; mod8<8; mod8++) {
                fastadd(ret, dp[N][mod3][mod8][inc3][1]);
                fastadd(ret, dp[N][mod3][mod8][inc3][0]);
            }
        }
    }
    return ret;
}

void trans(string &s) {
    int idx = (int)s.length() - 1;
    while(1) {
        if(s[idx] != '0') {
            int c = s[idx] - '0' - 1;
            s[idx] = (char)('0' + c);
            break;
        }
        else {
            s[idx] = '9';
            idx--;
        }
    }
}

int main() {
    string A, B; int P; cin >> A >> B >> P;
    trans(A);

    long long int rr = solve(B, P);
    long long int rl = solve(A, P);
    cout << (rr - rl + MOD) % MOD << endl;
    return 0;
}
0