結果
問題 | No.315 世界のなんとか3.5 |
ユーザー | risujiroh |
提出日時 | 2018-09-08 17:29:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,049 bytes |
コンパイル時間 | 2,072 ms |
コンパイル使用メモリ | 187,536 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-09 19:12:13 |
合計ジャッジ時間 | 18,084 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 283 ms
5,376 KB |
testcase_13 | AC | 284 ms
5,376 KB |
testcase_14 | AC | 561 ms
5,376 KB |
testcase_15 | AC | 561 ms
5,376 KB |
testcase_16 | AC | 559 ms
5,376 KB |
testcase_17 | AC | 559 ms
5,376 KB |
testcase_18 | AC | 285 ms
5,376 KB |
testcase_19 | AC | 285 ms
5,376 KB |
testcase_20 | AC | 285 ms
5,376 KB |
testcase_21 | AC | 284 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | AC | 559 ms
5,376 KB |
testcase_24 | AC | 557 ms
5,376 KB |
testcase_25 | WA | - |
testcase_26 | AC | 567 ms
5,376 KB |
testcase_27 | AC | 560 ms
5,376 KB |
testcase_28 | AC | 548 ms
5,376 KB |
testcase_29 | AC | 959 ms
5,376 KB |
testcase_30 | AC | 969 ms
5,376 KB |
testcase_31 | AC | 960 ms
5,376 KB |
testcase_32 | AC | 1,121 ms
5,376 KB |
testcase_33 | AC | 568 ms
5,376 KB |
testcase_34 | AC | 798 ms
5,376 KB |
testcase_35 | AC | 1,423 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using lint = long long int; template<class T = int> using V = vector<T>; template<class T = int> using VV = V< V<T> >; template<class T> void assign(V<T>& v, int n, const T& a = T()) { v.assign(n, a); } template<class T, class... U> void assign(V<T>& v, int n, const U&... u) { v.resize(n); for (auto&& i : v) assign(i, u...); } const lint mod = 1e9 + 7; inline lint emod(lint a, lint p = mod) { return (a % p + p) % p; } int main() { cin.tie(NULL); ios::sync_with_stdio(false); string a, b; cin >> a >> b; int p; cin >> p; auto calc = [&](string x, int in) { x = "00" + x; int n = x.size(); VV<VV<V<lint>>> dp; assign(dp, 4, 2, 3, 2, 8); dp[0][1][0][0][0] = 1; for (int i = 0; i < n; i++) { assign(dp[i + 1 & 3], 2, 3, 2, 8, 0LL); for (int r = 0; r < 3; r++) for (int s = 0; s < 8; s++) for (int d = 0; d < 10; d++) { (dp[i + 1 & 3][0][(r + d) % 3][d == 3][2 * s + d & 7] += dp[i & 3][0][r][0][s]) %= mod; (dp[i + 1 & 3][0][(r + d) % 3][1][2 * s + d & 7] += dp[i & 3][0][r][1][s]) %= mod; if (d > x[i] - '0') continue; (dp[i + 1 & 3][d == x[i] - '0'][(r + d) % 3][d == 3][2 * s + d & 7] += dp[i & 3][1][r][0][s]) %= mod; (dp[i + 1 & 3][d == x[i] - '0'][(r + d) % 3][1][2 * s + d & 7] += dp[i & 3][1][r][1][s]) %= mod; } } lint res = 0; for (int f = 0; f < 2; f++) for (int r = 0; r < 3; r++) for (int g = 0; g < 2; g++) for (int s = 0; s < 8; s++) { if (p == 8) { if (f <= in and (!r or g) and s) (res += dp[n & 3][f][r][g][s]) %= mod; } else if (p == 80) { if (f <= in and (!r or g)) (res += dp[n & 3][f][r][g][s]) %= mod; if (f <= in and (!r or g) and !s) (res -= dp[n - 1 & 3][f][r][g][s]) %= mod; } else { if (f <= in and (!r or g)) (res += dp[n & 3][f][r][g][s]) %= mod; if (f <= in and (!r or g) and !s) (res -= dp[n - 2 & 3][f][r][g][s]) %= mod; } } return res; }; cout << emod(calc(b, 1) - calc(a, 0)) << '\n'; }