結果
問題 | No.260 世界のなんとか3 |
ユーザー | mayoko_ |
提出日時 | 2015-08-01 09:34:14 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,884 bytes |
コンパイル時間 | 797 ms |
コンパイル使用メモリ | 87,536 KB |
実行使用メモリ | 79,032 KB |
最終ジャッジ日時 | 2024-07-18 00:21:39 |
合計ジャッジ時間 | 3,023 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
ソースコード
#include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> //#include<cctype> #include<climits> #include<iostream> #include<string> #include<vector> #include<map> //#include<list> #include<queue> #include<deque> #include<algorithm> //#include<numeric> #include<utility> #include<complex> //#include<memory> #include<functional> #include<cassert> #include<set> const int dx[] = {1, 0, -1, 0}; const int dy[] = {0, 1, 0, -1}; using namespace std; typedef long long ll; typedef vector<int> vi; typedef vector<ll> vll; typedef pair<int, int> pii; typedef complex<double> C; const int MAXN = 100100; const int MOD = 1e9+7; int mod10[MAXN]; ll dp[MAXN][2][2][3][8]; // big 3exist mod3 mod8 ll calc(const string& s) { memset(dp, 0, sizeof(dp)); int N = s.size(); dp[0][0][0][0][0] = 1; for (int n = 0; n < N; n++) for (int flag = 0; flag < 2; flag++) for (int e = 0; e < 2; e++) for (int m3 = 0; m3 < 3; m3++) for (int m8 = 0; m8 < 8; m8++) { if (dp[n][flag][e][m3][m8] == 0) continue; if (flag == 0) { int num = s[n]-'0'; for (int i = 0; i < num; i++) { // bigは1 int nm3 = (m3 + i) % 3; int nm8 = (m8 + i * mod10[N-1-n]) % 8; int ne = e; if (i == 3) ne = 1; (dp[n+1][1][ne][nm3][nm8] += dp[n][flag][e][m3][m8]) %= MOD; } // bigは0 int nm3 = (m3 + num) % 3; int nm8 = (m8 + num * mod10[N-1-n]) % 8; int ne = e; if (num == 3) ne = 1; (dp[n+1][0][ne][nm3][nm8] += dp[n][flag][e][m3][m8]) %= MOD; } else { for (int i = 0; i < 10; i++) { // bigは1 int nm3 = (m3 + i) % 3; int nm8 = (m8 + i * mod10[N-1-n]) % 8; int ne = e; if (i == 3) ne = 1; (dp[n+1][1][ne][nm3][nm8] += dp[n][flag][e][m3][m8]) %= MOD; } } } ll ans = 0; for (int flag = 0; flag < 2; flag++) for (int e = 0; e < 2; e++) for (int m3 = 0; m3 < 3; m3++) for (int m8 = 1; m8 < 8; m8++) { if (m3 == 0 || e == 1) ans += dp[N][flag][e][m3][m8]; } return (ans % MOD); } int check(const string& s) { int sum = 0; int n = s.size(); int tmp = 0; if (n < 3) tmp = stoi(s); else tmp = stoi(s.substr(n-3, 3)); if (tmp % 8 == 0) return 0; for (int i = 0; i < n; i++) { if (s[i] == '3') return 1; sum += (s[i]-'0'); } if (sum%3 == 0) return 1; return 0; } int main() { cin.tie(0); ios::sync_with_stdio(false); string A, B; cin >> A >> B; mod10[0] = 1; for (int i = 1; i < MAXN; i++) mod10[i] = (mod10[i-1]*10) % 8; ll ans = calc(B) - calc(A) + check(A); ans %= MOD; if (ans < 0) ans += MOD; cout << ans << endl; return 0; }