結果

問題 No.260 世界のなんとか3
ユーザー nominomi
提出日時 2019-02-17 11:05:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 1,927 bytes
コンパイル時間 1,615 ms
コンパイル使用メモリ 171,908 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-09-25 06:29:15
合計ジャッジ時間 6,189 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 173 ms
18,560 KB
testcase_04 AC 174 ms
18,560 KB
testcase_05 AC 82 ms
8,960 KB
testcase_06 AC 54 ms
7,040 KB
testcase_07 AC 167 ms
16,128 KB
testcase_08 AC 191 ms
16,512 KB
testcase_09 AC 93 ms
9,984 KB
testcase_10 AC 134 ms
14,976 KB
testcase_11 AC 177 ms
17,152 KB
testcase_12 AC 148 ms
13,952 KB
testcase_13 AC 26 ms
5,632 KB
testcase_14 AC 170 ms
16,384 KB
testcase_15 AC 36 ms
6,272 KB
testcase_16 AC 133 ms
13,696 KB
testcase_17 AC 97 ms
11,136 KB
testcase_18 AC 82 ms
10,368 KB
testcase_19 AC 178 ms
16,384 KB
testcase_20 AC 108 ms
11,392 KB
testcase_21 AC 128 ms
12,288 KB
testcase_22 AC 132 ms
14,208 KB
testcase_23 AC 13 ms
5,376 KB
testcase_24 AC 165 ms
15,232 KB
testcase_25 AC 283 ms
18,560 KB
testcase_26 AC 163 ms
18,560 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 164 ms
18,560 KB
testcase_29 AC 164 ms
18,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define int long long
#define rep(i, n) for (int (i) = (0); (i) < (n); ++(i))

template<class T>
void Add(T &a, const T &b, const T &mod=1000000007) {
  int val = ((a % mod) + (b % mod)) % mod;
  if (val < 0) { val += mod; }
  a = val;
}

// ------------------------------------------------------------------------------------------

string A, B;
int dp[11111][2][2][2][3][8];

signed main() {
  cin >> A >> B;
  int diff = B.size() - A.size();
  string zero = "";
  rep (i, diff) {
    zero += "0";
  }
  A = zero + A;

  // DPテーブルを初期化
  dp[0][0][0][0][0][0] = 1;
  // DP
  for (int digit = 0; digit < B.size(); digit++) {
    for (int over : {0, 1}) {
      for (int less : {0, 1}) {
        for (int three : {0, 1}) {
          for (int mod3 = 0; mod3 < 3; mod3++) {
            for (int mod8 = 0; mod8 < 8; mod8++) {
              int ue = (less ? 9 : B[digit] - '0');
              int shita = (over ? 0 : A[digit] - '0');
              for (int num = shita; num <= ue; num++) {
                int nLess = less || (num < ue);
                int nOver = over || (num > shita);
                if (less == 1 && nLess == 0) continue;
                if (over == 1 && nOver == 0) continue;
                Add(dp[digit+1][nOver][nLess][three || (num == 3)][(mod3+num)%3][(10*mod8+num)%8],
                dp[digit][over][less][three][mod3][mod8]);
              }
            }
          }
        }
      }
    }
  }

  // 総和を求める
  int ans = 0;
  for (int over : {0, 1}) {
    for (int less : {0, 1}) {
      for (int three : {0, 1}) {
        for (int mod3 = 0; mod3 < 3; mod3++) {
          for (int mod8 = 0; mod8 < 8; mod8++) {
            if ((three || mod3 == 0) && (mod8 != 0)) {
              Add(ans, dp[B.size()][over][less][three][mod3][mod8]);
            }
          }
        }
      }
    }
  }

  cout << ans << endl;

  return 0;
}
0