HDU1698(递归建立线段树)

递归方法建立线段树,通过时间是686ms,可能有更快的方法,需要继续学习!

下面是AC代码: 

#include
#include
#include
#include
#include
using namespace std;
const int maxn=100000+10;
int n,m,L,R,C;
int tree[maxn<<2];
int add[maxn<<2];
void pushup(int rt)
{
    tree[rt]=tree[rt<<1]+tree[rt<<1|1];
}
void build_tree(int l,int r,int rt)
{
    if(l==r)
    {
        tree[rt]=1;
        return;
    }
    int m=(l+r)>>1;
    build_tree(l,m,rt<<1);
    build_tree(m+1,r,rt<<1|1);
    pushup(rt);
}
void pushdown(int ln,int rn,int rt)
{
    if(add[rt])
    {
        add[rt<<1]=add[rt];
        add[rt<<1|1]=add[rt];
        tree[rt<<1]=add[rt]*ln;
        tree[rt<<1|1]=add[rt]*rn;
        add[rt]=0;
    }

}
void update(int l,int r,int rt)
{
    if(L<=l&&r<=R)
    {
        tree[rt]=(r-l+1)*C;
        add[rt]=C;
        return;
    }
    int m=(l+r)>>1;
    pushdown(m-l+1,r-m,rt);
    if(L<=m)
        update(l,m,rt<<1);
    if(m>1;
    pushdown(m-l+1,r-m,rt);
    int ans=0;
    if(L<=m)
        ans+=query(l,m,rt<<1);
    if(m

 

你可能感兴趣的:(线段树)