BZOJ3679: 数字之积(数位dp)
2018-09-10 00:58:16来源:博客园 阅读 ()
题意
题目链接
Sol
推什么结论啊。
直接大力dp,$f[i][j]$表示第$i$位,乘积为$j$,第二维直接开map
能赢!
/* */ #include<iostream> #include<cstdio> #include<map> #define LL long long using namespace std; inline LL read() { char c = getchar(); LL x = 0, f = 1; while(c < '0' || c > '9') {if(c == '-') f = -1; c = getchar();} while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar(); return x * f; } LL L, R, L1, R1; map<LL, LL> f[20]; LL s[21], num = 0; LL dfs(LL x, bool lim, LL mul) { if(x < 0) return 0; if(x == 0) { if(mul == -1) mul = 0; return mul >= L1 && mul <= R1; } if((!lim) && (f[x].find(mul) != f[x].end())) return f[x][mul]; LL ans = 0; for(int i = 0; i <= (lim ? s[x] : 9); i++) { if(mul == -1) { if(i == 0) ans += dfs(x - 1, lim && (i == s[x]), -1); else ans += dfs(x - 1, lim && (i == s[x]), i); } else ans += dfs(x - 1, lim && (i == s[x]), i * mul); } if(!lim) f[x][mul] = ans; return ans; } LL solve(LL x) { if(x == -1) return 0; num = 0; while(x) s[++num] = x % 10, x /= 10; return dfs(num, 1, -1); } int main() { R1 = read(); L = read(); R = read() - 1; L1 = 1; if(L == R + 1) { printf("%lld", L > 0 && L <= R1); return 0; } LL ans = solve(R) - solve(L - 1); cout << ans; return 0; } /* 23333 123456789 123456789123456789 6000000 123456 12345678 6 100 113 6 0 3 */
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 括号生成 2020-04-09
- L1-007 念数字 (10分) 2020-03-22
- Qt5小Demo之猜数字游戏 2020-03-19
- 回文数字的验证 2020-03-13
- P1216 [IOI1994]数字三角形 2020-02-14
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash