結果

問題 No.315 世界のなんとか3.5
ユーザー tsutajtsutaj
提出日時 2018-07-05 17:32:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,260 bytes
コンパイル時間 1,670 ms
コンパイル使用メモリ 169,784 KB
実行使用メモリ 154,052 KB
最終ジャッジ日時 2024-07-01 02:36:30
合計ジャッジ時間 20,551 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
153,472 KB
testcase_01 AC 103 ms
153,516 KB
testcase_02 AC 118 ms
153,476 KB
testcase_03 AC 100 ms
153,416 KB
testcase_04 AC 100 ms
153,500 KB
testcase_05 AC 101 ms
153,468 KB
testcase_06 AC 99 ms
153,416 KB
testcase_07 AC 99 ms
153,304 KB
testcase_08 AC 101 ms
153,556 KB
testcase_09 AC 100 ms
153,452 KB
testcase_10 AC 101 ms
153,536 KB
testcase_11 AC 99 ms
153,412 KB
testcase_12 AC 367 ms
153,636 KB
testcase_13 AC 365 ms
153,716 KB
testcase_14 AC 632 ms
153,672 KB
testcase_15 AC 628 ms
153,780 KB
testcase_16 AC 630 ms
153,668 KB
testcase_17 AC 630 ms
153,748 KB
testcase_18 AC 371 ms
153,644 KB
testcase_19 AC 371 ms
153,580 KB
testcase_20 AC 370 ms
153,656 KB
testcase_21 AC 368 ms
153,720 KB
testcase_22 WA -
testcase_23 AC 629 ms
153,676 KB
testcase_24 AC 629 ms
153,868 KB
testcase_25 WA -
testcase_26 AC 628 ms
153,700 KB
testcase_27 AC 630 ms
153,672 KB
testcase_28 AC 618 ms
153,672 KB
testcase_29 AC 1,007 ms
153,848 KB
testcase_30 AC 1,016 ms
154,052 KB
testcase_31 AC 1,009 ms
153,952 KB
testcase_32 AC 1,146 ms
153,920 KB
testcase_33 AC 634 ms
153,824 KB
testcase_34 AC 872 ms
153,884 KB
testcase_35 AC 1,417 ms
153,996 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, bool include_equal) {
    int d = 0;
    while(P % 10 == 0) d++, P /= 10;

    int N = s.length();
    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++) {
                        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]);
                        }
                    }
                }
            }
        }
    }

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

            fastadd(maybe_ng, dp[N][mod3][0][inc3][1]);
            if(N - d >= 1) fastsub(maybe_ng, dp[N-d][mod3][0][inc3][1] - (mod3 == 0 && inc3 == 0));

            if(include_equal) {
                fastadd(maybe_ng, dp[N][mod3][0][inc3][0]);
                if(N - d >= 1) fastsub(maybe_ng, dp[N-d][mod3][0][inc3][0]);
            }
        }
    }
    return (ret + maybe_ng - 1) % MOD;
}

int main() {
    string A, B; int P; cin >> A >> B >> P;
    long long int rr = solve(B, P, 1);
    long long int rl = solve(A, P, 0);
    // printf("rr = %lld, rl = %lld\n", rr, rl);
    cout << (rr - rl + MOD) % MOD << endl;
    return 0;
}
0