結果

問題 No.260 世界のなんとか3
ユーザー PachicobuePachicobue
提出日時 2017-12-31 04:35:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 3,250 bytes
コンパイル時間 2,937 ms
コンパイル使用メモリ 218,120 KB
実行使用メモリ 18,196 KB
最終ジャッジ日時 2024-06-01 09:43:56
合計ジャッジ時間 5,940 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 146 ms
18,196 KB
testcase_04 AC 146 ms
18,196 KB
testcase_05 AC 30 ms
8,832 KB
testcase_06 AC 20 ms
6,944 KB
testcase_07 AC 100 ms
15,872 KB
testcase_08 AC 72 ms
16,000 KB
testcase_09 AC 39 ms
9,600 KB
testcase_10 AC 111 ms
14,720 KB
testcase_11 AC 105 ms
16,572 KB
testcase_12 AC 64 ms
13,440 KB
testcase_13 AC 18 ms
6,944 KB
testcase_14 AC 95 ms
15,872 KB
testcase_15 AC 25 ms
6,940 KB
testcase_16 AC 83 ms
13,440 KB
testcase_17 AC 64 ms
10,880 KB
testcase_18 AC 62 ms
9,984 KB
testcase_19 AC 85 ms
15,872 KB
testcase_20 AC 57 ms
11,264 KB
testcase_21 AC 53 ms
12,032 KB
testcase_22 AC 94 ms
13,952 KB
testcase_23 AC 10 ms
6,940 KB
testcase_24 AC 74 ms
14,844 KB
testcase_25 AC 86 ms
17,952 KB
testcase_26 AC 55 ms
17,824 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 113 ms
18,196 KB
testcase_29 AC 173 ms
18,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define VARNAME(x) #x
#define show(x) cerr << #x << " = " << x << endl

using namespace std;
using ll = long long;
using ld = long double;
template <typename T>
vector<T> Vec(int n, T v)
{
    return vector<T>(n, v);
}
template <class... Args>
auto Vec(int n, Args... args)
{
    auto val = Vec(args...);
    return vector<decltype(val)>(n, move(val));
}

template <typename T>
ostream& operator<<(ostream& os, const vector<T>& v)
{
    os << "sz:" << v.size() << "\n[";
    for (const auto& p : v) {
        os << p << ",";
    }
    os << "]\n";
    return os;
}

constexpr ll MOD = (ll)1e9 + 7LL;

int main()
{
    cin.tie(0);
    ios::sync_with_stdio(false);
    string A, B;
    cin >> A >> B;
    int N = B.size();
    auto dp = Vec(N + 1, 2, 2, 3, 8, 0LL);  //digit, upper, used '3', mod3, mod8
    auto ope = [&](const string& s) {
        dp[0][1][0][0][0] = 1;
        for (int i = 0; i < N; i++) {
            for (int j = 0; j < 2; j++) {
                for (int k = 0; k < 2; k++) {
                    for (int l = 0; l < 3; l++) {
                        for (int m = 0; m < 8; m++) {
                            for (int n = 0; n < 10; n++) {
                                const int mod3 = (l + n) % 3;
                                const int mod8 = (2 * m + n) % 8;
                                const int has3 = ((k == 1 or n == 3) ? 1 : 0);
                                const int upper = ((j == 0 or n != s[i] - '0') ? 0 : 1);
                                if (j == 1 and n > s[i] - '0') {
                                    break;
                                }
                                dp[i + 1][upper][has3][mod3][mod8] += dp[i][j][k][l][m];
                                dp[i + 1][upper][has3][mod3][mod8] %= MOD;
                            }
                        }
                    }
                }
            }
        }
    };
    ope(B);

    ll ans = 0;
    for (int j = 0; j < 2; j++) {
        for (int k = 0; k < 2; k++) {
            for (int l = 0; l < 3; l++) {
                for (int m = 1; m < 8; m++) {
                    if (k == 1 or l == 0) {
                        ans += dp[N][j][k][l][m];
                        ans %= MOD;
                    }
                }
            }
        }
    }

    dp.clear();
    N = A.size();
    dp = Vec(N + 1, 2, 2, 3, 8, 0LL);  //digit, upper, used '3', mod3, mod8
    ope(A);
    for (int j = 0; j < 2; j++) {
        for (int k = 0; k < 2; k++) {
            for (int l = 0; l < 3; l++) {
                for (int m = 1; m < 8; m++) {
                    if (k == 1 or l == 0) {
                        ans += (MOD - dp[N][j][k][l][m]);
                        ans %= MOD;
                    }
                }
            }
        }
    }

    auto aho = [&]() {
        ll sum = 0;
        for (const char c : A) {
            if (c == '3') {
                return true;
            }
            sum += (c - '0');
        }
        return sum % 3 == 0;
    };
    auto seishun = [&]() {
        const ll n = stoll(A.substr(A.size() - 3, 3));
        return n % 8 == 0;
    };
    if (aho() and not seishun()) {
        ans = (ans + 1) % MOD;
    }

    cout << ans << endl;

    return 0;
}
0