码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 1698 just a hook

时间:2015-03-08 13:02:46      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:线段树

题意:一根钩子原来每单位长度价值均为1,每次改变一段区间的价值,求处理后钩子的总价值。

思路:线段树区间更新,区间求和,裸裸的模板题。

#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
int sum[500010],lazy[500010];
void pushup(int rt)
{
    sum[rt]=sum[rt<<1]+sum[rt<<1|1];
}
void pushdown(int rt,int x)
{
    if(lazy[rt]!=-1)
    {
        lazy[rt<<1]=lazy[rt<<1|1]=lazy[rt];
        sum[rt<<1]=(x-(x>>1))*lazy[rt];
        sum[rt<<1|1]=(x>>1)*lazy[rt];
        lazy[rt]=-1;
    }
}
void build(int l,int r,int rt)
{
    lazy[rt]=-1;
    sum[rt]=1;
    if(l==r) return;
    int m=(l+r)/2;
    build(l,m,rt<<1);
    build(m+1,r,rt<<1|1);
    pushup(rt);
}
void update(int l,int r,int x,int L,int R,int rt)
{
    if(l<=L&&R<=r)
    {
        lazy[rt]=x;
        sum[rt]=x*(R-L+1);
        return;
    }
    pushdown(rt,(R-L+1));
    int m=(L+R)/2;
    if(l<=m) update(l,r,x,L,m,rt<<1);
    if(m<r) update(l,r,x,m+1,R,rt<<1|1);
    pushup(rt);
}
int main()
{
    int T,n,q,x,y,z,i,j,k=0;
    while(scanf("%d",&T)!=EOF)
    {
        while(T--)
        {
            scanf("%d %d",&n,&q);
            build(1,n,1);
            while(q--){
                scanf("%d %d %d",&x,&y,&z);
                update(x,y,z,1,n,1);
            }
            printf("Case %d: The total value of the hook is %d.\n",++k,sum[1]);
        }
    }
    return 0;
}


hdu 1698 just a hook

标签:线段树

原文地址:http://blog.csdn.net/dominating413421391/article/details/44132243

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!