codeforces-611B-New Year and Old Property


611B-New Year and Old Property


                    time limit per test2 seconds  memory limit per test256 megabytes

The year 2015 is almost over.

Limak is a little polar bear. He has recently learnt about the binary system. He noticed that the passing year has exactly one zero in its representation in the binary system — 201510 = 111110111112. Note that he doesn’t care about the number of zeros in the decimal representation.

Limak chose some interval of years. He is going to count all years from this interval that have exactly one zero in the binary representation. Can you do it faster?

Assume that all positive integers are always written without leading zeros.

Input
The only line of the input contains two integers a and b (1 ≤ a ≤ b ≤ 1018) — the first year and the last year in Limak’s interval respectively.

Output
Print one integer – the number of years Limak will count in his chosen interval.

input
5 10
output
2

input
2015 2015
output
1

input
100 105
output
0

input
72057594000000000 72057595000000000
output
26

题目链接:cf-611B

题目大意:求[a,b]范围内,二进制有且只有一个0的数字有多少个

题目思路:直接暴力出所有只含有一个0的数字,判断这个数字是否在[a,b]范围内

以下是代码:

#include<iostream>
#include<string>
#include <cmath>
#include <algorithm>
#include <vector>
using namespace std;
#define ll long long
ll ret[70];
ll a,b;
ll ans = 0;
#define LL long long
LL qpow(LL a, LL n) {
LL ret = 1;
while (n) 
{
    if (n & 1) ret = ret * a;
        a = a * a;
    n>>= 1;
     }
return ret;
}
void solve()
{
    ret[0] = 1;
    for (ll i = 1; i < 64; i++)
    {
        ret[i] = ret[i - 1] + qpow(2,i);
    }
}
void getans()
{
    for (ll i = 0; i < 64; i++)
    {
        ll tmp = qpow(2,i);
        for (ll j = i + 1; j < 64; j++)
        {
            if(ret[j] - tmp >= a && ret[j] - tmp <= b) ans++; 
        }
    }
}
int main(){
    solve();
    cin >> a >> b;
    getans();
    cout << ans << endl;
    return 0;
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值