Codeforces 768B - Code For 1(分治思想)

Posted Wisdom+.+

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 768B - Code For 1(分治思想)相关的知识,希望对你有一定的参考价值。

768B - Code For 1

思路:类似于线段树的区间查询。

代码:

 

#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define mem(a,b) memset((a),(b),sizeof(a))
int query(ll L,ll R,ll n,ll l,ll r)
{
    if(L>r||R<l||!n)return 0;
    if(n==1)return 1;
    ll m=(l+r)>>1;
    return query(L,R,n/2,l,m-1)+query(L,R,n%2,m,m)+query(L,R,n/2,m+1,r);
}
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    ll n,l,r;
    cin>>n>>l>>r;
    ll L=0,x=n;
    while(x)L=L*2+1,x>>=1;
    cout<<query(l,r,n,1,L)<<endl;
    return 0;
}

 

以上是关于Codeforces 768B - Code For 1(分治思想)的主要内容,如果未能解决你的问题,请参考以下文章

CF768B Code For 1 题解 分治

[CF768B] Legacy

Codeforces Avito Code Challenge 2018 D. Bookshelves

Exception in thread "main" java.io.IOException: Server returned HTTP response code: 400 fo

Codeforces Round #536 (Div. 2)

[CodeForces - 614B] B - Gena's Code