結果
問題 | No.260 世界のなんとか3 |
ユーザー | kimiyuki |
提出日時 | 2017-01-08 17:59:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 345 ms / 2,000 ms |
コード長 | 2,557 bytes |
コンパイル時間 | 1,094 ms |
コンパイル使用メモリ | 87,092 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-09 23:27:33 |
合計ジャッジ時間 | 5,613 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 274 ms
6,940 KB |
testcase_04 | AC | 273 ms
6,940 KB |
testcase_05 | AC | 53 ms
6,944 KB |
testcase_06 | AC | 36 ms
6,944 KB |
testcase_07 | AC | 187 ms
6,944 KB |
testcase_08 | AC | 128 ms
6,944 KB |
testcase_09 | AC | 72 ms
6,940 KB |
testcase_10 | AC | 209 ms
6,940 KB |
testcase_11 | AC | 195 ms
6,940 KB |
testcase_12 | AC | 119 ms
6,940 KB |
testcase_13 | AC | 34 ms
6,940 KB |
testcase_14 | AC | 178 ms
6,940 KB |
testcase_15 | AC | 48 ms
6,944 KB |
testcase_16 | AC | 156 ms
6,940 KB |
testcase_17 | AC | 124 ms
6,940 KB |
testcase_18 | AC | 119 ms
6,940 KB |
testcase_19 | AC | 155 ms
6,944 KB |
testcase_20 | AC | 110 ms
6,940 KB |
testcase_21 | AC | 98 ms
6,940 KB |
testcase_22 | AC | 176 ms
6,944 KB |
testcase_23 | AC | 19 ms
6,940 KB |
testcase_24 | AC | 138 ms
6,940 KB |
testcase_25 | AC | 173 ms
6,940 KB |
testcase_26 | AC | 105 ms
6,940 KB |
testcase_27 | AC | 2 ms
6,944 KB |
testcase_28 | AC | 210 ms
6,944 KB |
testcase_29 | AC | 345 ms
6,944 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <numeric> #include <functional> #define repeat(i,n) for (int i = 0; (i) < int(n); ++(i)) #define whole(f,x,...) ([&](decltype((x)) whole) { return (f)(begin(whole), end(whole), ## __VA_ARGS__); })(x) using ll = long long; using namespace std; template <typename X, typename T> auto vectors(X x, T a) { return vector<T>(x, a); } template <typename X, typename Y, typename Z, typename... Zs> auto vectors(X x, Y y, Z z, Zs... zs) { auto cont = vectors(y, z, zs...); return vector<decltype(cont)>(x, cont); } ll gcd(ll a, ll b) { while (a) { b %= a; swap(a, b); } return b; } ll lcm(ll a, ll b) { return (a * b) / gcd(a,b); } // strmodin(s, a, b, m)[i][j] = the number of digits t in mod m for t \le s, i = t \bmod \prod a and t contains digits j \subset b vector<vector<ll> > strmodin(string const & s, vector<int> const & a, vector<int> const & b, ll m) { int al = whole(accumulate, a, 1ll, lcm); int bl = 1ll << b.size(); auto cur = vectors(2, bl, al, ll()); auto prv = vectors(2, bl, al, ll()); cur[0][0][0] = 1; for (char c : s) { cur.swap(prv); repeat (p,2) repeat (j,bl) repeat (i,al) { repeat (d,10) { bool np; if (d < (c-'0') or p) np = true; else if (d == (c-'0')) np = false; else continue; int nj = j; { auto it = whole(find, b, d); if (it != b.end()) nj |= 1 << (it - b.begin()); } int ni = (i * 10 + d) % al; ll & it = cur[np][nj][ni]; it = (it + prv[p][j][i]) % m; } prv[p][j][i] = 0; } } auto result = vectors(al, bl, ll()); repeat (p,2) repeat (j,bl) repeat (i,al) { result[i][j] += cur[p][j][i]; result[i][j] %= m; } return result; } const int mod = 1e9+7; ll f(string const & s) { auto dp = strmodin(s, { 3, 8 }, { 3 }, mod); ll cnt = 0; repeat (i,3*8) repeat (j,2) { if ((i % 3 == 0 or j) and i % 8 != 0) { cnt += dp[i][j]; cnt %= mod; } } return cnt; } bool g(string const & s) { auto modstr = [&](ll m) { ll q = 0; for (char c : s) q = (q * 10 + (c - '0')) % m; return q; }; return (modstr(3) == 0 or whole(count, s, '3')) and modstr(8) != 0; } int main() { string a, b; cin >> a >> b; cout << ((f(b) - f(a) + g(a)) % mod + mod) % mod << endl; return 0; }