博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UESTC 1307 windy数(数位DP)
阅读量:6279 次
发布时间:2019-06-22

本文共 639 字,大约阅读时间需要 2 分钟。

在区间内统计任意两位相差大于二的数的个数。数位dp在推到时候注意最高位要特判一下因为最高位是没有前一位的。

1 #include 
2 #include
3 #include
4 #include
5 #include
6 #include
7 #define ll long long 8 #define LEN 100 9 10 using namespace std;11 12 ll dp[LEN][LEN];13 14 inline int abs(int x){ return x>0?x:-x;}15 16 void init()17 {18 memset(dp, 0, sizeof dp);19 for(int i=0; i
=1; i--){46 for(int j=0; j
> a >> b){66 ll ans = solve(b)-solve(a-1);67 cout << ans << endl;68 }69 return 0;70 }
View Code

 

转载于:https://www.cnblogs.com/shu-xiaohao/p/3453326.html

你可能感兴趣的文章
MAT文件操作
查看>>
【英语天天读】Heart of a stranger 陌生的心灵
查看>>
wp7 Emulator模拟器停止工作原因
查看>>
iBATIS.net直接执行sql语句
查看>>
Matlab Command Window 进度提示
查看>>
Windows on Device 项目实践 3 - 火焰报警器制作
查看>>
数据库备份与还原SQL代码
查看>>
http的请求和响应过程1
查看>>
ASP.NET Core: 全新的ASP.NET !
查看>>
64位下的Visual Studio的编辑并继续
查看>>
beanstalkd 消息队列的第一手资料
查看>>
前段时间是Flash大战HTML5,现在是SliverLight“被遗弃”,我啊羡慕你们的热闹。...
查看>>
Android 开发环境的配置
查看>>
Module-Zero之版本管理
查看>>
Bash : 索引数组
查看>>
[WPF学习资料] WPF简介
查看>>
Spring + SpringMVC + Druid + MyBatis 给你一个灵活的后端解决方案
查看>>
Linux系统安装VMware Tools
查看>>
asp.net 页面右下角弹出类似QQ或MSN的消息提示
查看>>
游戏开发经常使用算法概述
查看>>