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

线段树 (区间修改 区间查询 延迟标记)

时间:2015-08-02 11:51:29      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

hdu 1698 Just a Hook

题意:
 给你一链子,这天链子由金银铜三种钩子组成,每种钩子都有自己的价值,起初,这条钩子全部由铜钩子组成,给你两个数n(钩子的个数),Q(操作的个数)每次操作就是将给定区间里的数变成某种钩子,求这条链子的总价值。
分析:
  线段树模版题,处理好延迟标记即可。
代码:
#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstring>
#include<string>
#include<map>
#include<set>
#include<cmath>
#include<queue>
#include<vector>
#include<stack>
#include<cstdlib>
#pragma comment(linker, "/STACK:1024000000")
//#define LL __int64
#define LL long long
#define pi acos(-1.0)
#define PB push_back()
#define MP make_pair()
#define BG begin()
#define ED end()
#define clr(a,b)  memset(a,b,sizeof(a))
#define inf 0x3f3f3f3f
#define Mod  1e9+7
#define root  1,n,1
#define lson  l,mid,rt<<1
#define rson  mid+1,r,rt<<1|1
using namespace std;
const int maxn=100005;
int A[maxn];
int sum[maxn<<2];
int lazy[maxn<<2];


void PushUp(int rt)
{
    sum[rt]=sum[rt<<1]+sum[rt<<1|1];
}

void PushDown(int rt,int len)
{
    if(lazy[rt])
    {
        lazy[rt<<1]=lazy[rt<<1|1]=lazy[rt];
        sum[rt<<1]=(len-(len>>1))*lazy[rt];
        sum[rt<<1|1]=(len>>1)*lazy[rt];
        lazy[rt]=0;
    }
}

void Build(int l,int r,int rt)
{
    sum[rt]=1;
    lazy[rt]=0;
    if(l==r)  return ;
    int mid=l+r>>1;
    Build(lson);
    Build(rson);
    PushUp(rt);
}

void Update(int ll,int rr,int c,int l,int r ,int rt)
{
    if(ll<=l&&rr>=r)
    {
        lazy[rt]=c;
        sum[rt]=(r-l+1)*c;
        return ;
    }
    PushDown(rt,r-l+1);
    int mid=l+r>>1;
    if(ll<=mid)  Update(ll,rr,c,lson);
    if(rr>mid)   Update(ll,rr,c,rson);
    PushUp(rt);
}
int main()
{
      #ifndef ONLINE_JUDGE
    freopen("in.cpp","r",stdin);
    #endif // ONLINE_JUDGE
    int T,i;
    cin>>T;
  for(i=1;i<=T;i++)
    {
        int n;
        scanf("%d",&n);
        Build(root);
        int Q;
        scanf("%d",&Q);
        while(Q--)
        {
            int l, r, z;
            scanf("%d%d%d",&l,&r,&z);
            Update(l,r,z,root);
        }
        printf("Case %d: The total value of the hook is %d.\n",i,sum[1]);
    }
    return 0;

}












版权声明:本文为博主原创文章,未经博主允许不得转载。

线段树 (区间修改 区间查询 延迟标记)

标签:

原文地址:http://blog.csdn.net/u013514722/article/details/47205155

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