768B Code For 1 [二分]

B. Code For 1
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Jon fought bravely to rescue the wildlings who were attacked by the white-walkers at Hardhome. On his arrival, Sam tells him that he wants to go to Oldtown to train at the Citadel to become a maester, so he can return and take the deceased Aemon's place as maester of Castle Black. Jon agrees to Sam's proposal and Sam sets off his journey to the Citadel. However becoming a trainee at the Citadel is not a cakewalk and hence the maesters at the Citadel gave Sam a problem to test his eligibility.

Initially Sam has a list with a single element n. Then he has to perform certain operations on this list. In each operation Sam must remove any element x, such that x > 1, from the list and insert at the same position  sequentially. He must continue with these operations until all the elements in the list are either 0 or 1.

Now the masters want the total number of 1s in the range l to r (1-indexed). Sam wants to become a maester but unfortunately he cannot solve this problem. Can you help Sam to pass the eligibility test?

Input

The first line contains three integers nlr (0 ≤ n < 2500 ≤ r - l ≤ 105r ≥ 1l ≥ 1) – initial element and the range l to r.

It is guaranteed that r is not greater than the length of the final list.

Output

Output the total number of 1s in the range l to r in the final sequence.

Examples
input
7 2 5
output
4
input
10 3 10
output
5
Note

Consider first example:

Elements on positions from 2-nd to 5-th in list is [1, 1, 1, 1]. The number of ones is 4.

For the second example:

Elements on positions from 3-rd to 10-th in list is [1, 1, 1, 0, 1, 0, 1, 0]. The number of ones is 5.




题意:给出一个数字n,把n拆成 n/2 n%2 n/2三个整数,重复拆分直到所有的数字<=1,求指定区间l,r中有多少个1

思路:对于一个特定的数字n,经过拆分之后,一定有n个1,其余是0.而总长度可以由n能够多少次二分得到。即len

得到总长度以后,对整个区间进行二分搜索,对于二分的区间L,R满足完全在l,r之内时,当前数字拆分的所有1一定累加到区间内,即当前数字如果是num则返回num

对于任何一个二分区间L,R,一定满足L+R是偶数,所以mid得到的是num%2的结果,所以每次二分对两侧区间和中间值进行下一次搜索。整体搜索类似于线段树。

代码:

#include<iostream>
#include<algorithm>
using namespace std;
long long n;
long long l, r;

long long query(long long L, long long R, long long num)
{
    if(r<L || l > R || num == 0)
         return 0;
    if(l <= L && R <= r)
        return num;
    long long mid = (L + R) >> 1;
    long long a, b, c;
    a = query(L, mid-1, num/2);
    b = query(mid+1, R, num/2);
    c = query(mid, mid, num%2);
    return a+b+c;
}

int main()
{
    while(cin >> n)
    {
        cin >> l >> r;
        long long len = 1, r = 2;
        long long p = n;
        while(p>1)
        {
            len += r;
            p >>= 1;
            r <<= 1;
        }

        long long res = query(1, len, n);
        cout << res;
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值