博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #247 (Div. 2) D. Random Task
阅读量:5897 次
发布时间:2019-06-19

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

D. Random Task
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

One day, after a difficult lecture a diligent student Sasha saw a graffitied desk in the classroom. She came closer and read: "Find such positive integer n, that among numbers n + 1n + 2, ..., n there are exactly m numbers which binary representation contains exactly kdigits one".

The girl got interested in the task and she asked you to help her solve it. Sasha knows that you are afraid of large numbers, so she guaranteed that there is an answer that doesn't exceed 1018.

Input

The first line contains two space-separated integers, m and k (0 ≤ m ≤ 10181 ≤ k ≤ 64).

Output

Print the required number n (1 ≤ n ≤ 1018). If there are multiple answers, print any of them.

Sample test(s)
input
1 1
output
1
input
3 2
output
5

题意:

求一个n,使得n+1到2n这些数的二进制中恰好有k个1的数有m个。

思路:

在k同样的情况下。打表之后发现单调性,能够二分。

问题转化为n+1到2n二进制表示之后1的个数为k的有多少个?

进一步统一。假设知道区间[0,x]内的二进制表示之后1的个数为k有cal(x)个,那么答案就是cal(2n)-cal(n)了。

如今要 求cal(x)。

假设x为  101101 ,k=3。

由于求比小于等于x的数二进制表示之后1的个数为k的有多少个,所以当第一位为0的时候,后面5位中须要3位为0才干满足条件,C[5][3],前两位同样。第三位为0的时候,前面已经有2个1。后面三位仅仅需1个1就可以,C[3][1]...

从样例中你应该能得出结论了吧。

逐位枚举。如果前d为同样,已有num个1,该位为1,我们能够将该位置0(由于求的是[0,x]内的二进制表示之后1的个数为k有多少个),那么后面还须要k-num个1,后面还有i为的话,那么ans+= C[i][k-num]。

代码:

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#pragma comment (linker,"/STACK:102400000,102400000")#define maxn 15#define MAXN 100005#define OO (1LL<<35)-1#define mod 1000000007#define INF 0x3f3f3f3f#define pi acos(-1.0)#define eps 1e-6typedef long long ll;using namespace std;ll n,m,k,d,ans,tot,flag,cnt;ll C[70][70];ll cal(ll x){ ll i,j,res=0,num=0; for(i=62;i>=0;i--) { if(x&(1LL<
=0) res+=C[i][k-num]; num++; } } return res;}int main(){ ll i,j,t,le,ri,mid,cnt; for(i=0;i<=64;i++) C[i][0]=1; for(i=1;i<=64;i++) { for(j=1;j<=i;j++) { C[i][j]=C[i-1][j]+C[i-1][j-1]; } } while(cin>>m>>k) { le=1; ri=1LL<<62; while(le<=ri) { mid=(le+ri)>>1; cnt=cal(2*mid)-cal(mid); if(m<=cnt) { ans=mid; ri=mid-1; } else le=mid+1; } cout<
<

转载地址:http://ltxsx.baihongyu.com/

你可能感兴趣的文章
清理恢复文本框的默认值
查看>>
【原创】如何在vim中使用tab进行python代码补全
查看>>
Struts秘籍之起式:第1.3式:迁移至Struts 1.1
查看>>
绿色PLSQL/Developer搭配Oracle精简客户端使用
查看>>
ViewPager Banner(广告墙)
查看>>
Spring Cloud 入门教程(二): 服务消费者(rest+ribbon)(Greenwich.RELEASE)
查看>>
iOS开发20:Navigation Bar的简单设置
查看>>
iOS开发24:使用SQLite3存储和读取数据
查看>>
GMF树形布局 2 实现展开/折叠
查看>>
Cocos2dx 2.0x Touch事件
查看>>
php判断是否登录
查看>>
Yii2 Unable to verify your data submission 错误-CSRF
查看>>
angularjs-paste-upload
查看>>
hadoop学习笔记
查看>>
解除 Linux 系统的最大进程数和最大文件打开数限制
查看>>
在 Linux 中删除超大文件的技巧
查看>>
Java类的修饰符判断:java.lang.reflect.Modifier
查看>>
使用优盘或者移动硬盘安装Ubuntu
查看>>
electron-创建一个hello world应用
查看>>
RXjs相关
查看>>