FZU2179/Codeforces 55D beautiful number 数位DP
题目大意:
求 1(m)到n直接有多少个数字x满足 x可以整出这个数字的每一位上的数字
思路:
整除每一位。只需要整除每一位的lcm即可
但是数字太大,dp状态怎么表示呢
发现 1~9的LCM 是2520 ....也就是说只要对这个数mod2520 剩下的余数能整除lcm就可以整除了。。
计数的时候还有一个技巧,具体见注释
此外这个题还卡常数了,预处理lcm才过了。。
代码如下:
- #include <iostream>
- #include <stdio.h>
- #include<string.h>
- #include<algorithm>
- #include<string>
- #include<ctype.h>
- using namespace std;
- #define LCM 2520
- long long dp[][LCM+][][];
- long long n;
- int m;
- int state[],hs[],s;
- bool vi[];
- int d[];
- int Lcm[][];
- int gcd(int a,int b)
- {
- return b?gcd(b,a%b):a;
- }
- int lcm(int a,int b)
- {
- if(b==)
- return a;
- return a/gcd(a,b)*b;
- }
- void ini()
- {
- m=;
- while(n)
- {
- d[++m]=n%;
- n/=;
- }
- reverse(d+,d+m+);
- }
- void DP()
- {
- memset(dp,,sizeof(dp));
- //先放最高位
- for(int i=;i<d[];i++)
- {
- dp[][i][hs[i]][]=; //dp...[0]存储的是前i位的数小于所求数的方案
- }
- dp[][d[]][hs[d[]]][]=; //dp...[1]存储的是前i位的数等于所求数的方案
- //从高位往下转移
- for(int i=;i<=m;++i)
- {
- for(int j=;j<;++j)
- dp[i][j][hs[j]][]=; //从大于1的数位开始放1~9都肯定小于所求数
- for(int j=;j<;++j)
- {
- for(int k=;k<s;++k)
- {
- if(dp[i-][j][k][]==&&dp[i-][j][k][]==)
- continue;
- for(int t=;t<=;++t)
- {
- int sum=(j*+t)%LCM;
- int L=Lcm[k][t];
- dp[i][sum][hs[L]][]+=dp[i-][j][k][];
- //在当前位放的数小于等于所求数的当前为数的情况可以继承高位都等于所求数的方案
- //否则,只能继承高位小于所求数的方案
- if(t<d[i]) //当前位放的数小于所求数的当前位
- {
- dp[i][sum][hs[L]][]+=dp[i-][j][k][];
- }
- if(t==d[i]) //当前位放的数等于所求数的当前位
- {
- dp[i][sum][hs[L]][]+=dp[i-][j][k][];
- }
- }
- }
- }
- }
- }
- void setstate()
- {
- memset(vi,,sizeof(vi));
- s=;
- int tmp;
- for(int i=;i<(<<);i++)
- {
- tmp=;
- for(int j=;j<;j++)
- {
- if((<<j)&i)
- {
- tmp=lcm(j+,tmp);
- }
- }
- if(vi[tmp]==)
- {
- state[s]=tmp;
- hs[tmp]=s++;
- vi[tmp]=;
- }
- }
- for(int i=;i<s;i++)
- {
- for(int j=;j<=;j++)
- Lcm[i][j]=lcm(state[i],j);
- }
- }
- long long cal()
- {
- long long ans=;
- for(int i=;i<;i++)
- {
- for(int j=;j<s;j++)
- {
- if(i%state[j]==)
- ans+=dp[m][i][j][]+dp[m][i][j][];
- }
- }
- return ans;
- }
- long long solve(long long x)
- {
- n=x;
- ini();
- DP();
- return cal();
- }
- int main()
- {
- long long a,b;
- setstate();
- int t;
- scanf("%d",&t);
- while(t--)
- {
- //scanf("%I64d%I64d",&a,&b);
- scanf("%I64d",&a);
- //cout<<solve(b)-solve(a-1)<<endl;
- cout<<solve(a)<<endl;
- }
- return ;
- }
FZU2179/Codeforces 55D beautiful number 数位DP的更多相关文章
- codeforces 55D - Beautiful numbers(数位DP+离散化)
D. Beautiful numbers time limit per test 4 seconds memory limit per test 256 megabytes input standar ...
- CodeForces - 55D - Beautiful numbers(数位DP,离散化)
链接: https://vjudge.net/problem/CodeForces-55D 题意: Volodya is an odd boy and his taste is strange as ...
- Codeforces - 55D Beautiful numbers (数位dp+数论)
题意:求[L,R](1<=L<=R<=9e18)区间中所有能被自己数位上的非零数整除的数的个数 分析:丛数据量可以分析出是用数位dp求解,区间个数可以转化为sum(R)-sum(L- ...
- CodeForces - 55D Beautiful numbers —— 数位DP
题目链接:https://vjudge.net/problem/CodeForces-55D D. Beautiful numbers time limit per test 4 seconds me ...
- codeforces 55D. Beautiful numbers 数位dp
题目链接 一个数, 他的所有位上的数都可以被这个数整除, 求出范围内满足条件的数的个数. dp[i][j][k], i表示第i位, j表示前几位的lcm是几, k表示这个数mod2520, 2520是 ...
- Codeforces 55D Beautiful Number
Codeforces 55D Beautiful Number a positive integer number is beautiful if and only if it is divisibl ...
- beautiful number 数位DP codeforces 55D
题目链接: http://codeforces.com/problemset/problem/55/D 数位DP 题目描述: 一个数能被它每位上的数字整除(0除外),那么它就是beautiful nu ...
- Codeforces 55D Beautiful Number (数位统计)
把数位dp写成记忆化搜索的形式,方法很赞,代码量少了很多. 下面为转载内容: a positive integer number is beautiful if and only if it is ...
- HDU 5179 beautiful number 数位dp
题目链接: hdu: http://acm.hdu.edu.cn/showproblem.php?pid=5179 bc(中文): http://bestcoder.hdu.edu.cn/contes ...
随机推荐
- crtmpserver 基本流程分析
近期在研究crtmpserver,这里记录下学习过程,首先我们先分析下基本流程. 1.初始化流程 InitNetworking---初始化网络 Initialize Logger::Init()--- ...
- Android 自定义View (一)
转载请标明出处:http://blog.csdn.net/lmj623565791/article/details/24252901 很多的Android入门程序猿来说对于Android自定义View ...
- mdf导入sqlServer
导入mdf有两种方法: (需要mdf和ldf两个文件) 1. 在SQL企业管理器中,选择左边树型列表,根节点即"数据库"的文件夹图标,右键"所有任务"→ ...
- 系统管理中 bash shell 脚本常用方法总结
在日常系统管理工作中,需要编写脚本来完成特定的功能,编写shell脚本是一个基本功了!在编写的过程中,掌握一些常用的技巧和语法就可以完成大部分功能了,也就是2/8原则 1. 单引号和双引号的区别 单引 ...
- iOS9之后对于NSURL的编码转换方法变化说明
在iOS9之后,官方推荐使用下面的方法对NSString进行转换 - (nullable NSString *)stringByAddingPercentEncodingWithAllowedChar ...
- 【转】深入理解Java内存模型(六)——final
与前面介绍的锁和volatile相比较,对final域的读和写更像是普通的变量访问.对于final域,编译器和处理器要遵守两个重排序规则: 在构造函数内对一个final域的写入,与随后把这个被构造对象 ...
- PHP preg_match正则表达
在php中preg_match()函数是用来执行正则表达式的一个常用的函数,下面我来给大家详细介绍preg_match使用方法. 函数用法 int preg_match_all ( string pa ...
- 武汉科技大学ACM :1006: 华科版C语言程序设计教程(第二版)习题7.15
Problem Description 输入n个字符串(n<=100),输出其中最长的串,如果有多个则取最先找到的那一个. Input 多组测试数据. 每组测试数据第一行包含一个整数n,表示一共 ...
- rtmpdump代码分析 转
RTMPdump 源代码分析 1: main()函数 rtmpdump 是一个用来处理 RTMP 流媒体的工具包,支持 rtmp://, rtmpt://, rtmpe://, rtmpte://, ...
- 使用 HTTP 缓存机制提升系统性能
摘要 HTTP缓存机制定义在HTTP协议标准中,被现代浏览器广泛支持,同时也是一个用于提升基于Web的系统性能的广泛使用的工具.本文讨论如何使用HTTP缓存机制提升基于Web的系统,以及如何避免误用. ...