結果

問題 No.260 世界のなんとか3
ユーザー ei1333333ei1333333
提出日時 2015-11-03 14:22:47
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,028 bytes
コンパイル時間 1,370 ms
コンパイル使用メモリ 159,708 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-09-13 12:06:19
合計ジャッジ時間 3,855 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,168 KB
testcase_01 AC 3 ms
7,156 KB
testcase_02 AC 4 ms
7,144 KB
testcase_03 AC 91 ms
8,444 KB
testcase_04 AC 90 ms
8,348 KB
testcase_05 AC 20 ms
7,656 KB
testcase_06 AC 15 ms
7,404 KB
testcase_07 AC 63 ms
8,176 KB
testcase_08 AC 45 ms
8,332 KB
testcase_09 AC 26 ms
7,604 KB
testcase_10 AC 70 ms
7,936 KB
testcase_11 AC 65 ms
8,372 KB
testcase_12 AC 42 ms
7,936 KB
testcase_13 AC 15 ms
7,072 KB
testcase_14 AC 60 ms
8,280 KB
testcase_15 AC 18 ms
7,424 KB
testcase_16 AC 54 ms
8,064 KB
testcase_17 AC 42 ms
7,756 KB
testcase_18 AC 41 ms
7,828 KB
testcase_19 AC 52 ms
8,016 KB
testcase_20 AC 38 ms
7,876 KB
testcase_21 AC 34 ms
7,960 KB
testcase_22 AC 59 ms
8,100 KB
testcase_23 AC 9 ms
7,044 KB
testcase_24 AC 47 ms
8,064 KB
testcase_25 AC 48 ms
8,252 KB
testcase_26 WA -
testcase_27 AC 4 ms
7,060 KB
testcase_28 AC 91 ms
8,544 KB
testcase_29 AC 91 ms
8,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int MOD = 1000000007;
int dp[10000][2][2][3][8];
int rec(const string& S, int idx, bool free, bool Aho, int three, int eight)
{
  if(idx == S.size()) {
    return((Aho | (three == 0)) & (eight != 0));
  } else if(~dp[idx][free][Aho][three][eight]) {
    return(dp[idx][free][Aho][three][eight]);
  } else {
    int ret = 0;
    for(int i = max< int >(9 * free, S[idx]); i >= 0; i--) {
      (ret += rec(S, idx + 1, free|(i != S[idx]), Aho|(i == 3), (three * 10 + i) % 3, (eight * 10 + i) % 8)) %= MOD;
    }
    return(dp[idx][free][Aho][three][eight] = ret);
  }
}

const int getDP(string S)
{
  for(int i = 0; i < S.size(); i++) S[i] -= '0';
  memset(dp, -1, sizeof(dp));
  return(rec(S, 0, false, false, 0, 0));
}

void Decrement(string& S, int idx)
{
  if(S[idx] == '0') Decrement(S, idx - 1), S[idx] = '9';
  else              S[idx]--;
}


int main()
{
  string A, B;
  cin >> A >> B;
  Decrement(A, A.size() - 1);
  cout << (getDP(B) - getDP(A) + MOD) % MOD << endl;
}
0