博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 3652 B-number(数位DP)
阅读量:5100 次
发布时间:2019-06-13

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

题意:统计区间 [1,n] 中含有 '13' 且模 13 为 0 的数字有多少个。

分析:由 (HDU 2089 不要62)和(CF 55D - Beautiful numbers)想到该题做法,dp[i][j][f][mod],长度为i,前缀是否为1,是否已符合条件,余数为mod的数字个数。

#include #include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;typedef pair
PII;typedef long long ll;#define lson l,m,rt<<1#define pi acos(-1.0)#define rson m+1,r,rt<<11#define All 1,N,1#define read freopen("in.txt", "r", stdin)const ll INFll = 0x3f3f3f3f3f3f3f3fLL;const int INF= 0x7ffffff;const int mod = 1000000007;ll dp[15][2][2][13],n;int bit[15];ll dfs(int i,int j,int f,int mod,int e){ if(i==0)return f&&(mod%13==0)?1:0; if(!e&&dp[i][j][f][mod]!=-1)return dp[i][j][f][mod]; int u=e?bit[i]:9; ll num=0; for(int v=0;v<=u;++v) { int tm=(mod*10+v)%13; if(f)num+=dfs(i-1,v==1,1,tm,e&&(v==u)); else num+=dfs(i-1,v==1,j&&v==3,tm,e&&(v==u)); } return e?num:dp[i][j][f][mod]=num;}ll solve(ll x){ int len=0; while(x){ bit[++len]=x%10; x/=10; } return dfs(len,0,0,0,1);}int main(){ memset(dp,-1,sizeof(dp)); while(~scanf("%I64d",&n)){ printf("%I64d\n",solve(n)); }return 0;}

  

转载于:https://www.cnblogs.com/zsf123/p/4675434.html

你可能感兴趣的文章
java序列化与反序列化
查看>>
tomcat进行reload之后类会重新加载不释放,容易导致内存溢出
查看>>
不错的东西: AutoMapper
查看>>
oracle数据库在启动时(startup)报错ORA-00600: 内部错误代码,参数: [kcratr1_lostwrt], [], [], [], [], [], [], []...
查看>>
程序员面试、算法研究、编程艺术、红黑树、数据挖掘5大系列集锦
查看>>
Linux服务器的那些性能参数指标
查看>>
面试高级算法梳理笔记
查看>>
深度学习与计算机视觉系列(8)_神经网络训练与注意点
查看>>
大话程序猿眼里的高并发架构
查看>>
访问服务器,远程访问linux主机
查看>>
Java Day 09
查看>>
走近Java之幕后的String
查看>>
django+sqlite进行web开发(二)
查看>>
一些比较好的论坛、博客
查看>>
(转载)iOS- 指压即达,如何集成iOS9里的3D Touch
查看>>
Python模块
查看>>
iOS cocoapods 怎么开源代码
查看>>
第十七节:类与对象-属性-类常量-自动加载对象
查看>>
【博客美化小妙招】你希望有一个可爱的看板娘吗?
查看>>
BZOJ.2159.Crash的文明世界(斯特林数 树形DP)
查看>>