結果

問題 No.260 世界のなんとか3
ユーザー yukirinyukirin
提出日時 2017-04-13 20:46:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 3,050 bytes
コンパイル時間 908 ms
コンパイル使用メモリ 108,560 KB
実行使用メモリ 18,708 KB
最終ジャッジ日時 2024-07-18 12:58:34
合計ジャッジ時間 2,822 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 68 ms
18,708 KB
testcase_04 AC 68 ms
18,576 KB
testcase_05 AC 16 ms
8,576 KB
testcase_06 AC 11 ms
9,364 KB
testcase_07 AC 44 ms
14,944 KB
testcase_08 AC 31 ms
12,308 KB
testcase_09 AC 19 ms
11,272 KB
testcase_10 AC 52 ms
17,532 KB
testcase_11 AC 47 ms
16,324 KB
testcase_12 AC 29 ms
13,792 KB
testcase_13 AC 10 ms
6,944 KB
testcase_14 AC 43 ms
15,752 KB
testcase_15 AC 14 ms
8,696 KB
testcase_16 AC 40 ms
14,496 KB
testcase_17 AC 31 ms
12,044 KB
testcase_18 AC 30 ms
12,864 KB
testcase_19 AC 37 ms
13,820 KB
testcase_20 AC 26 ms
12,548 KB
testcase_21 AC 25 ms
11,948 KB
testcase_22 AC 44 ms
16,488 KB
testcase_23 AC 6 ms
6,944 KB
testcase_24 AC 34 ms
13,312 KB
testcase_25 AC 42 ms
12,244 KB
testcase_26 AC 26 ms
12,224 KB
testcase_27 AC 3 ms
6,944 KB
testcase_28 AC 48 ms
18,580 KB
testcase_29 AC 79 ms
18,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bitset>
#include <cfloat>
#include <cmath>
#include <ctime>
#include <deque>
#include <iomanip>
#include <iostream>
#include <limits>
#include <list>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <typeindex>
#include <typeinfo>
#include <vector>

#define DEBUG(x) cout << #x << ": " << x << endl
#define INFILE() freopen("input.txt", "r", stdin)
#define REP(i, a, b) for (int i = (a); i < (b); i++)
#define REPC(i, a) REP(i, 0, a)
#define ALL(s) begin(s), end(s)
#define RALL(s) rbegin(s), rend(s)

using namespace std;

using ll = long long;
using ull = unsigned long long;
using i_i = pair<int, int>;
using ll_i = pair<ll, int>;
using i_ll = pair<int, ll>;
using d_i = pair<double, int>;
using ll_ll = pair<ll, ll>;
using d_d = pair<double, double>;

static constexpr ll LL_MOD = 1000000007;
static constexpr int I_MOD = 1000000007;
static constexpr double EPS = numeric_limits<double>::epsilon();
static constexpr double PI = 3.14159265358979323846264338327950288;

template <class T> static void scan(vector<T> &v);
static void scan(vector<string> &v, bool isWord = true);

ll dp[10010][2][2][3][8];
ll dp2[10010][2][2][3][8];

int main(int argc, char *argv[]) {
  // INFILE();
  string a, b;
  cin >> a >> b;
  int la = a.size(), lb = b.size();

  dp[0][0][0][0][0] = dp2[0][0][0][0][0] = 1;

  REPC(i, la) REPC(less, 2) REPC(t, 2) REPC(m3, 3) REPC(m8, 8) {
    int lim = less ? 9 : a[i] - '0';
    REPC(n, lim + 1) {
      dp[i + 1][less || n < lim][t || n == 3][(m3 + n) % 3]
        [(m8 * 10 + n) % 8] += (dp[i][less][t][m3][m8] % LL_MOD);
    }
  }

  REPC(i, lb) REPC(less, 2) REPC(t, 2) REPC(m3, 3) REPC(m8, 8) {
    int lim = less ? 9 : b[i] - '0';
    REPC(n, lim + 1) {
      dp2[i + 1][less || n < lim][t || n == 3][(m3 + n) % 3]
         [(m8 * 10 + n) % 8] += (dp2[i][less][t][m3][m8] % LL_MOD);
    }
  }

  ll countA = 0, countB = 0;

  REPC(t, 2) REPC(m3, 3) REPC(m8, 8) {
    if ((t || (m3 == 0)) && (m8 != 0)) {
      (countA += dp[la][1][t][m3][m8]) %= LL_MOD;
    }
  }

  REPC(less, 2) REPC(t, 2) REPC(m3, 3) REPC(m8, 8) {
    if ((t || (m3 == 0)) && (m8 != 0)) {
      (countB += dp2[lb][less][t][m3][m8]) %= LL_MOD;
    }
  }

  cout << (countB - countA + LL_MOD) % LL_MOD << "\n";
  return 0;
}

template <class T> static void scan(vector<T> &v) {
  map<type_index, const char *const> m = {{typeid(int), "%d"},
                                          {typeid(ll), "%lld"},
                                          {typeid(double), "%lf"},
                                          {typeid(char), "%c"}};

  auto tFormat = m[typeid(T)];

  for (T &n : v) {
    scanf(tFormat, &n);
  }
}

static void scan(vector<string> &v, bool isWord) {
  if (isWord) {
    for (auto &n : v) {
      cin >> n;
    }
    return;
  }

  int i = 0, size = v.size();
  string s;
  getline(cin, s);

  if (s.size() != 0) {
    i++;
    v[0] = s;
  }

  for (; i < size; ++i) {
    getline(cin, v[i]);
  }
}
0