UVA 1640 The Counting Problem(按位dp)
题意:给你整数a、b,问你[a,b]间每个数字分解成单个数字后,0、1、2、3、4、5、6、7、8、9,分别有多少个
题解:首先找到[0,b]与[0,a-1]进行区间减法,接着就只是求[0,x]
对于x首先求出他有几位、接着从高位到低位求每个区间
例如x=15602,则依次求出[1,9],[10,99],[100,999],[1000,9999],这个注意因为没有前导0,所以1-9是一样多的0要少一些
接着再求[10000,10999],[11000,11999],[12000,12999],[13000,13999],[14000,14999],[15000,15099]..........[15500,15599]
注意在这儿需求前导0,最后对于个位数的几个进行遍历就好了
#include<set>
#include<map>
#include<queue>
#include<stack>
#include<cmath>
#include<vector>
#include<string>
#include<cstdio>
#include<cstring>
#include<iomanip>
#include<stdlib.h>
#include<iostream>
#include<algorithm>
using namespace std;
#define eps 1E-8
/*注意可能会有输出-0.000*/
#define sgn(x) (x<-eps? -1 :x<eps? 0:1)//x为两个浮点数差的比较,注意返回整型
#define cvs(x) (x > 0.0 ? x+eps : x-eps)//浮点数转化
#define zero(x) (((x)>0?(x):-(x))<eps)//判断是否等于0
#define mul(a,b) (a<<b)
#define dir(a,b) (a>>b)
typedef long long ll;
typedef unsigned long long ull;
const int Inf=<<;
const ll INF=1LL<<;
const double Pi=acos(-1.0);
const int Mod=1e9+;
const int Max=;
int Dig[]= {,,,,,,,,,}; //1-9 10-99 100-999的总个数
int makeup[]= {,,,,,,,,,}; //补全1-9并减去0
int dp1[];//[0,a-1]中0到9的个数
int dp2[];//[0,b]中0到9的个数
void Everyno(int k,int *dp)//计算有k位的dp,例如k=2就是 10-99,不补前导0
{
int num=Dig[k-]*k;
for(int i=; i<; ++i)
{
if(!i)
dp[i]=dp[i]+num-makeup[k-]*;//减去一些0不可能出现的地方
else
dp[i]=dp[i]+num+makeup[k-];
}
}
void Everyyes(int k,int *dp)
{
int num=makeup[k]*k;
for(int i=;i<;++i)
{
dp[i]+=num;
}
}
void Solve(int a,int* dp)//[0,a]中0到9的个数
{
for(int i=; i<; ++i)
dp[i]=;
int enn=;
int dig=;//位数
while(enn<=a)//计算 1-9 10-99 100-999...除开0以外,每位个数都相同且平分差值
{
Everyno(dig,dp);
dig++;
enn=enn*+;
} enn=enn/+;
while(enn<=a)//剩下的数
{
dig=;
while(enn+Dig[dig+]<=a)//例如求1899时 现在为1000,则需要使enn=1099
{
dig++;
enn+=Dig[dig];
}
if(!dig)
break;
Everyyes(dig,dp);
int temp=enn,temp2=dig;
while(temp2--)
temp/=;
while(temp)//补上前面的数,例如求1899在使用1000-1099时需要补上1与0的100个
{
dp[temp%]+=makeup[dig+];
temp/=;
}
enn++;
}
if(enn==)
enn--;
while(enn<=a)//剩下个位几个
{
int temp=enn;
if(temp==)
dp[]++;
while(temp)
{
dp[temp%]++;
temp/=;
}
enn++;
}
return ;
}
int main()
{
int a,b;
while(~scanf("%d %d",&a,&b)&&(a+b))
{
if(a>b)
swap(a,b);
Solve(a-,dp1);
Solve(b,dp2);
for(int i=; i<; ++i)
printf("%d%c",dp2[i]-dp1[i],i==?'\n':' ');
}
return ;
}
其实还有更简单的方法:从后到前枚举每一个位置可能出现没一个值的个数,这儿可以通过打表找到一些规律
#include<set>
#include<map>
#include<queue>
#include<stack>
#include<cmath>
#include<vector>
#include<stdlib.h>
#include<string>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
#define eps 1E-8
/*注意可能会有输出-0.000*/
#define Sgn(x) (x<-eps? -1 :x<eps? 0:1)//x为两个浮点数差的比较,注意返回整型
#define Cvs(x) (x > 0.0 ? x+eps : x-eps)//浮点数转化
#define mul(a,b) (a<<b)
#define dir(a,b) (a>>b)
typedef long long ll;
const int Inf=0x3f3f3f3f;
const double Pi=acos(-1.0);
const int Max=;
ll Dp(ll n,int m)
{
ll num=,k,l;
if(!m)//0出现的次数是特殊的
{
k=,l=;
while(l<n)
{
num+=((n-k)/(l*)*l);
//printf("%lld %lld %lld\n",num,l,n);
k=k*+;
if((n-k)%(l*)<=(k/)&&(n-k)%(l*)>)
num+=((n-k)%(l*));
l*=;
}
}
else//1-9出现的次数求法一致
{
k=;
l=m;
while(n>=l)//从低到高枚举每一位
{
num+=(n-l)/(k*)*k+min(k,(n-l)%(k*)+);
k*=;
l*=;
}
}
return num;
}
int main()
{
ll n,m;
while(~scanf("%lld %lld",&n,&m)&&(n+m))
{
if(n>m)
swap(n,m);
for(int i=;i<;i++)
{
printf("%lld%c",Dp(m,i)-Dp(n-,i),i==?'\n':' ');//枚举每个数
}
}
return ;
}
UVA 1640 The Counting Problem(按位dp)的更多相关文章
- UVA 1640 The Counting Problem UVA1640 求[a,b]或者[b,a]区间内0~9在里面各个数的数位上出现的总次数。
/** 题目:UVA 1640 The Counting Problem UVA1640 链接:https://vjudge.net/problem/UVA-1640 题意:求[a,b]或者[b,a] ...
- UVA.1640.The Counting Problem / BZOJ.1833.[ZJOI2010]数字计数(数位DP)
题目链接 \(Description\) 求\([l,r]\)中\(0,1,\cdots,9\)每个数字出现的次数(十进制表示). \(Solution\) 对每位分别DP.注意考虑前导0: 在最后统 ...
- UVA - 1640 The Counting Problem (数位dp)
题意:统计l-r中每种数字出现的次数 很明显的数位dp问题,虽然有更简洁的做法但某人已经习惯了数位dp的风格所以还是选择扬长避短吧(说白了就是菜啊) 从高位向低位走,设状态$(u,lim,ze)$表示 ...
- UVa 1640 - The Counting Problem(数论)
链接: https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem& ...
- UVA 1640 The Counting Problem
https://vjudge.net/problem/UVA-1640 题意:统计区间[l,r]中0——9的出现次数 数位DP 注意删除前导0 #include<cmath> #inclu ...
- UVa 1640 The Counting Problem (数学,区间计数)
题意:给定两个数m, n,求从 m 到 n 中0-9数字各出现了多少次. 析:看起来挺简单的,其实并不好做,因为有容易想乱了.主要思路应该是这样的,分区间计数,先从个位进行计,一步一步的计算过来.都从 ...
- POJ2282 The Counting Problem(数位DP)
用dp[pos][val][cnt]表示状态,pos是数位,val是当前统计的数字,cnt是目前统计的目标数字的出现次数 注意状态的转移过程,统计数字0时前导0的影响. 1 #include<c ...
- 『The Counting Problem 数位dp』
The Counting Problem Description 求 [L,R]内每个数码出现的次数. Input Format 若干行,一行两个正整数 L 和 R. 最后一行 L=R=0,表示输入结 ...
- 【暑假】[深入动态规划]UVa 1380 A Scheduling Problem
UVa 1380 A Scheduling Problem 题目: http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=41557 ...
随机推荐
- Mac中pico编辑器的使用方法
Pico是一个由华盛顿大学(University of Washington)计算与通讯研究所(Computing and Communications Group)编写并维护的文本编辑程序,在多个版 ...
- 推荐一个CSS类库
animate.css 一个封装好的动画效果类
- 160704、commons-beanutils.jar常用方法
package com.test.beanutils; import java.lang.reflect.InvocationTargetException;import java.text.Pars ...
- php and mysql pear的安装
http://www.cnblogs.com/bugY/archive/2012/07/06/2578972.html 什么是PEAR 来自百度百科:PEAR是PHP扩展与应用库(the PHP Ex ...
- flume sink两种类型 file_rool 自定义sing com.mycomm.MySink even if there is only one event, the event has to be sent in an array
mkdir /data/UnifiedLog/; cd /data/UnifiedLog/; wget http://mirror.bit.edu.cn/apache/flume/1.8.0/apac ...
- centos7在vmware上无法上网
centos7在虚拟机中设置NAT后也无法上网! 首先激活网卡!打开桌面右键在终端中打开:cd /etc/sysconfig/network-scripts/ls 找到以ifcfg开头的,如ifcfg ...
- 报错:SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
Outline SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: trunc ...
- 1.Oracle数据库查看用户锁表和对表解锁的sql语句
① 查看用户锁表 select sess.sid, sess.serial#, lo.oracle_username, lo.os_user_name, ao.object_name, lo.lock ...
- hexo+yilia主题博客如何添加图标icon
1. 先去比特虫网站做icon图标 2. 图片放到hexo/source/img文件夹下 3. 找到hexo\themes\modernist\layout_partial\head.ejs,设置为 ...
- 采购订单打印并预览PDF
*&---------------------------------------------------------------------* *& Report Z01MMF019 ...