結果

問題 No.260 世界のなんとか3
ユーザー nominomi
提出日時 2019-02-16 17:12:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 1,747 bytes
コンパイル時間 1,768 ms
コンパイル使用メモリ 171,876 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-09-22 14:33:36
合計ジャッジ時間 5,449 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 128 ms
18,560 KB
testcase_04 AC 128 ms
18,560 KB
testcase_05 AC 60 ms
9,088 KB
testcase_06 AC 40 ms
6,944 KB
testcase_07 AC 121 ms
16,256 KB
testcase_08 AC 139 ms
16,512 KB
testcase_09 AC 68 ms
9,856 KB
testcase_10 AC 99 ms
15,104 KB
testcase_11 AC 131 ms
17,280 KB
testcase_12 AC 110 ms
14,080 KB
testcase_13 AC 19 ms
6,940 KB
testcase_14 AC 125 ms
16,384 KB
testcase_15 AC 26 ms
6,944 KB
testcase_16 AC 99 ms
13,824 KB
testcase_17 AC 71 ms
11,136 KB
testcase_18 AC 60 ms
10,240 KB
testcase_19 AC 131 ms
16,384 KB
testcase_20 AC 80 ms
11,520 KB
testcase_21 AC 93 ms
12,288 KB
testcase_22 AC 98 ms
14,208 KB
testcase_23 AC 10 ms
6,940 KB
testcase_24 AC 121 ms
15,232 KB
testcase_25 AC 202 ms
18,560 KB
testcase_26 AC 122 ms
18,688 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 122 ms
18,688 KB
testcase_29 AC 121 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++) {
                Add(dp[digit+1][over || (num > shita)][less || (num < ue)][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