1057. Amount of Degrees

Time limit: 1.0 second

Memory limit: 64 MB
Create a code to determine the amount of integers, lying in the set [X;Y] and being a sum of exactlyK different integer degrees of B.
Example. Let X=15, Y=20, K=2, B=2. By this example 3 numbers are the sum of exactly two integer degrees of number 2:
17 = 24+20,

18 = 24+21,

20 = 24+22.

Input

The first line of input contains integers X and Y, separated with a space (1 ≤ X ≤ Y ≤ 231−1).
The next two lines contain integers K and B (1 ≤ K ≤ 20; 2 ≤ B ≤ 10).

Output

Output should contain a single integer — the amount of integers, lying between X and Y, being a sum of exactly K different integer degrees of B.

Sample

input output
15 20
2
2
3

/*
题意: 求一个区间的 degree进制的1的个数为k的数的个数
思路:数位dp,一定要注意是1个个数为k dp[i][j][k] 代表到达了i位的j进制还差k个1 详细注意的地方写在了代码中
*/ #include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<queue>
#include<stack>
#include<vector>
#include<set>
#include<map> #define L(x) (x<<1)
#define R(x) (x<<1|1)
#define MID(x,y) ((x+y)>>1) #define bug printf("hihi\n") #define eps 1e-8 typedef long long ll; using namespace std; #define N 35 int dp[33][15][33]; int degree,k;
int bit[N]; int dfs(int pos,int degree,int t,bool bound)
{
if(t<0) return 0;
if(pos==0) return t ? 0:1;
if(!bound&&dp[pos][degree][t]>=0) return dp[pos][degree][t];
int up=bound ? min(bit[pos],1):1;
int ans=0;
for(int i=0;i<=up;i++)
ans+=dfs(pos-1,degree,t-i,bound&&i==bit[pos]); //必须是bit[pos],不能是uo
if(!bound) dp[pos][degree][t]=ans;
return ans;
} int solve(int x)
{
int i,j;
int len=0;
while(x)
{
bit[++len]=x%degree;
x/=degree;
}
return dfs(len,degree,k,true);
} int main()
{
int i,j,le,ri;
memset(dp,-1,sizeof(dp)); while(~scanf("%d%d",&le,&ri))
{
scanf("%d%d",&k,°ree);
printf("%d\n",solve(ri)-solve(le-1));
}
return 0;
}

最新文章

  1. 怎样用SQL语句查询一个数据库中的所有表?
  2. java学习第20天(IO流)
  3. yii2的urlManager配置
  4. 新浪微博客户端(34)-block的细节与本质
  5. github 或者gitlab 设置添加SSH, 避免每次提交重复输入用户名
  6. 如何删除docker images/containers
  7. 搭建eclipse环境下 Nutch+Mysql 二次开发环境
  8. UItextField常用方法
  9. B+树的插入、删除(附源代码)
  10. MySQL学习笔记(五):MySQL表级锁和行级锁
  11. 关于spring通知中propagation的7种配置《转载》
  12. css块居中
  13. 聚类——FCM
  14. 1 开发环境 eclipse oomph版本 jdk1.8 lucene 6.6.0,luke6.6.0
  15. _trigger
  16. WinDBG相关
  17. suoi46 最大和和 (线段树)
  18. Django 框架 Form组件
  19. centos7 修改密码
  20. 7.纯 CSS 创作一个 3D 文字跑马灯特效

热门文章

  1. CURL命令的使用
  2. docker rancher 安装
  3. 【cocos2d-js官方文档】四、基础数据类型
  4. Codeforces 810 A.Straight &#171;A&#187;
  5. Python3 集合(无序的set)
  6. 【枚举】bzoj1709 [Usaco2007 Oct]Super Paintball超级弹珠
  7. (转)关于Unity3D的编辑器崩溃时的线索定位
  8. XAMPP 下apache部署网站,多个虚拟机(空间)配置
  9. CentOS 6.9使用Setup配置网络(解决dhcp模式插入网线不自动获取IP的问题)
  10. NEXUS7 学习