結果
| 問題 | No.260 世界のなんとか3 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-01-08 18:15:14 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 322 ms / 2,000 ms |
| コード長 | 2,236 bytes |
| 記録 | |
| コンパイル時間 | 869 ms |
| コンパイル使用メモリ | 80,560 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-17 18:05:50 |
| 合計ジャッジ時間 | 6,047 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 27 |
ソースコード
#include <iostream>
#include <vector>
#include <algorithm>
#include <array>
#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); }
// 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, int a, vector<int> const & b, ll m) {
int pow_b = 1 << b.size();
array<int,10> table = {};
repeat (d,10) {
auto it = whole(find, b, d);
if (it != b.end()) table[d] |= 1 << (it - b.begin());
}
auto cur = vectors(a, pow_b, ll());
auto prv = vectors(a, pow_b, ll());
int bound_i = 0, bound_j = 0;
for (char c : s) {
c -= '0';
cur.swap(prv);
repeat (d, c) cur[(bound_i * 10 + d) % a][bound_j | table[d]] += 1;
bound_i = (bound_i * 10 + c) % a;
bound_j |= table[c];
repeat (p,2) repeat (i,a) repeat (j,pow_b) {
repeat (d,10) {
ll & it = cur[(i * 10 + d) % a][j | table[d]];
it = (it + prv[i][j]) % m;
}
prv[i][j] = 0;
}
}
cur[bound_i][bound_j] += 1;
cur[bound_i][bound_j] %= m;
return cur;
}
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;
}