結果
問題 | No.315 世界のなんとか3.5 |
ユーザー | moti |
提出日時 | 2015-12-14 20:33:53 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,527 bytes |
コンパイル時間 | 1,322 ms |
コンパイル使用メモリ | 116,316 KB |
実行使用メモリ | 815,952 KB |
最終ジャッジ日時 | 2024-09-15 12:40:25 |
合計ジャッジ時間 | 4,309 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 370 ms
172,288 KB |
testcase_01 | MLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
ソースコード
// 自前の環境で巨大なケースの実行確認をするときは ulimit -s unlimited すると良い。 // ただ巨大なケースの解の検証ができなそうなので、ただREしていないかどうかの確認くらいしか出来なそう? #include <iostream> #include <algorithm> #include <cmath> #include <vector> #include <complex> #include <queue> #include <deque> #include <set> #include <map> #include <unordered_set> #include <unordered_map> #include <iomanip> #include <assert.h> #include <array> #include <cstdio> #include <cstring> #include <random> #include <functional> #include <numeric> #include <bitset> using namespace std; #define REP(i,a,b) for(int i=a;i<(int)b;i++) #define rep(i,n) REP(i,0,n) #define all(c) (c).begin(), (c).end() #define zero(a) memset(a, 0, sizeof a) #define minus(a) memset(a, -1, sizeof a) #define minimize(a, x) a = std::min(a, x) #define maximize(a, x) a = std::max(a, x) typedef long long ll; int const inf = 1<<29; int P; int nA, nB; int const MOD = 1e9+7; vector<int> dp[200010][2][3][2]; int ssize; string S; bool isA; unordered_map<int, int> simo = {{8, 3}, {80, 4}, {800, 5}}; int func(int index = 0, bool giri = true, int mod3 = 0, bool used3 = false, int modP = 0) { if(index >= ssize) { if(giri && isA) { return 0; } return ((mod3 == 0) || used3) && modP; } auto& ret = dp[index][giri][mod3][used3][modP]; if(ret + 1) { return ret; } ret = 0; int digit = S[index] - '0'; int mx = giri ? digit + 1 : 10; rep(i, mx) { ret += func(index + 1, giri && (i == digit), (mod3 * 10 + i) % 3, used3 || (i == 3), ssize - index > simo[P] ? 0 : ((modP * 10 + i) % P)); if(ret >= MOD) ret -= MOD; } return ret; } int main() { string A, B; cin >> A >> B >> P; S = B; ssize = S.size(); isA = false; rep(i, 200010) rep(j, 2) rep(k, 3) rep(l, 2) dp[i][j][k][l].clear(); rep(index, 200010) rep(giri, 2) rep(mod3, 3) rep(used3, 2) { if(ssize - index > simo[P]) { dp[index][giri][mod3][used3].resize(1, -1); } else { dp[index][giri][mod3][used3].resize(P, -1); } } int ans = func(); rep(i, 200010) rep(j, 2) rep(k, 3) rep(l, 2) dp[i][j][k][l].clear(); rep(index, 200010) rep(giri, 2) rep(mod3, 3) rep(used3, 2) { if(ssize - index > simo[P]) { dp[index][giri][mod3][used3].resize(1, -1); } else { dp[index][giri][mod3][used3].resize(P, -1); } } S = A; ssize = S.size(); isA = true; ans -= func(); ans += MOD; if(ans >= MOD) ans -= MOD; cout << ans << endl; return 0; }