Amount of Degrees

Time limit: 1.0 second
Memory limit: 64 MB

Description

Create a code to determine the amount of integers, lying in the set [X;Y] and being a sum of exactly K 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

解题思路

题意:

思路:

#include<iostream>
#include<string>
using namespace std;
int f[32][32]; int change(int x, int b)
{
string s;
do
{
s = char('0' + x % b) + s;
x /= b;
}
while (x > 0);
for (int i = 0; i < s.size(); ++i)
if (s[i] > '1')
{
for (int j = i; j < s.size(); ++j) s[j] = '1';
break;
}
x = 0;
for (int i = 0; i < s.size(); ++i)
x = x | ((s[s.size() - i - 1] - '0') << i); //或运算,在此相当于加法
return x;
} void init()//预处理f
{
f[0][0] = 1;
for (int i = 1; i <= 31; ++i)
{
f[i][0] = f[i - 1][0];
for (int j = 1; j <= i; ++j) f[i][j] = f[i - 1][j] + f[i - 1][j - 1];
}
} int calc(int x, int k) //统计[0..x]内二进制表示含k个1的数的个数
{
int tot = 0, ans = 0; //tot记录当前路径上已有的1的数量,ans表示答案
for (int i = 31; i > 0; --i)
{
if (x & (1 << i)) //该位上是否为1
{
++tot;
if (tot > k) break;
x = x ^ (1 << i); //将这一位置0
}
if ((1 << (i - 1)) <= x)
{
ans += f[i - 1][k - tot];
}
}
if (tot + x == k) ++ans;
return ans;
} int main()
{
int x, y, k, b;
cin >> x >> y >> k >> b;
x = change(x, b);
y = change(y, b);
init();
cout << calc(y, k) - calc(x - 1, k) << endl;
return 0;
}

  

最新文章

  1. CSS制作三角形和按钮
  2. HTML 5 &lt;input&gt; placeholder 属性
  3. eclipse中tomcat能正常启动,但是浏览器访问不了tomcat首页
  4. VIMTUTOR《VIM教程》
  5. 那些不被关注但很重要的html标签
  6. [unity3d]手游资源热更新策略探讨
  7. SQLSERVER 触发器 将一个服务器上的数据库中数据插入到另一个服务器上的数据库中怎么做
  8. HDU 4970 Killing Monsters
  9. kaggle之旧金山犯罪
  10. java MongoDB driver error infos
  11. Asp.Netserver控制发展Grid实现(一个)UI转让
  12. ke
  13. python爬虫程序打包为exe程序并在控制台下运行
  14. Spring Boot:如何优雅的使用 Mybatis
  15. HTML⑤
  16. 关于JVM的一些冷知识
  17. HDU 2033 人见人爱A+B
  18. Java基础:整型数组(int[]、Integer[])排序
  19. React Native组件之BackAndroid !安卓手机的物理返回键的使用
  20. MySQL服务器SSD性能问题分析与测试

热门文章

  1. 03-CSS颜色、文本、字体、边框、背景
  2. CentOS7搭建Kafka单机环境及基础操作
  3. 剖析 Vue.js 内部运行机制 (1)
  4. sublime text支持gbk编码
  5. TCP TIME_WAIT和CLOSE_WAIT
  6. [POJ1187] 陨石的秘密
  7. CMD批处理查看当前路径
  8. web应用,http协议简介,web框架
  9. Linux内核设计与实现 总结笔记(第七章)中断和中断处理
  10. 图论 List