数位DP板子题(本质记忆化搜索)
constexpr auto Inf = 0X3F3F3F3F; #ifndef LOCAL #include <bits/stdc++.h> #endif typedef long long LL; using namespace std; namespace IO { inline LL read() { LL o = 0, f = 1; char c = getchar(); while (c < '0' || c > '9') { if (c == '-') f = -1; c = getchar(); } while (c > '/' && c < ':') { o = o * 10 + c - '0'; c = getchar(); } return o * f; } inline char recd() { char o; while ((o = getchar()) < 'A' || o > 'Z'); return o; } inline double reod() { double o = read(), f = 1; char c; while ((c = getchar()) > '/' && c < ':') o += (c - '0') / (f *= 10); return o; } } using namespace IO; const int SIZE = 1E4 + 7, Mod = 1E9 + 7; int dig[23], Ind; LL DP[23][12][2][103]; int N; LL DFS(int pos, int pre, int lim, int S) { if (pos == 0) return S == 0; if (DP[pos][pre][lim][S] != -1) return DP[pos][pre][lim][S]; LL res = 0; for (int e = 0; e <= (lim == 0 ? dig[pos] : 9); e++) res += DFS(pos - 1, e, lim || e < dig[pos], (S + e) % N); return DP[pos][pre][lim][S] = res; } LL Split(LL w) { Ind = 0; memset(DP, -1, sizeof DP); while (w) dig[++Ind] = w % 10, w /= 10; return DFS(Ind, 0, 0, 0); } int main() { LL L, R; while (~scanf("%lld%lld%d", &L, &R, &N)) printf("%lld\n", Split(R) - Split(L - 1)); }
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题8.9 (Java代码)浏览:1413 |
最小公倍数 (C语言代码)浏览:894 |
C语言程序设计教程(第三版)课后习题6.7 (C语言代码)浏览:548 |
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:672 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:583 |
C语言程序设计教程(第三版)课后习题9.4 (C语言代码)浏览:699 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:566 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:383 |
淘淘的名单 (C语言代码)浏览:1309 |
数列问题 (C语言代码)浏览:1068 |