CodeForces-768B-Code For 1+DFS类似线段树思想

Posted ckxkexing

tags:

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

Code For 1

题意:对于一个n,可以将它分解为n/2,n%2,n/2三个数字,重复上述操作知道虽有值为1或0为止;

  求L---R区间数列的和;

思路:首先画着画着可以发现这是一个类似线段数的结构,其长度len在每次n/2时,len=len*2+1;

  有了长度和n就可以dfs查询区间的和了;

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <string>
#include <cstring>
using namespace std;
typedef long long ll;

ll len=1;
int dfs(ll n,ll L,ll R,ll l,ll r)
    {
        if(L>r||R<l||n==0)return 0;
        if(n==1)return 1;
        ll mid  = L + (R-L)/2;
        return dfs(n/2,L,mid-1,l,r)+dfs(n%2,mid,mid,l,r)+dfs(n/2,mid+1,R,l,r);
    }
int main(){

    ll n,l,r;
    scanf("%lld%lld%lld",&n,&l,&r);
    ll N = n;
    while(N>1)
    {
        len=len*2+1;
        N/=2;
    }
    printf("%d\n",dfs(n,1,len,l,r));
    return 0;
}

 

以上是关于CodeForces-768B-Code For 1+DFS类似线段树思想的主要内容,如果未能解决你的问题,请参考以下文章

CodeForces768B:Code For 1 (分治)

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

codeforces 768F Barrels and boxes

codeforces 768 E 变形NIM博弈/手写sg函数

for循环套for循环

java 后执行的for循环比先执行的for循环速度快