hdu 4027 Can you answer these queries?

线段树区间更新问题,lazy标记当前数能否开方

#include <cstdio>
#include <iostream>
#include <cstring>
#include <string>
#include <cstdlib>
#include <algorithm>
#include <cmath>
#include <vector>
#include <set>
#include <list>
#include <queue>
#include <map>
using namespace std;
#define L(i) i<<1
#define R(i) i<<1|1
#define INF  0xFFFFFFFF
#define pi acos(-1.0)
#define eps 1e-4
#define maxn 100010
#define MOD 1000000007

struct node
{
    int l,r;
    long long sum,lazy;
}tree[maxn*4];

void pushup(int pos)
{
    tree[pos].sum = tree[pos<<1].sum + tree[pos<<1|1].sum;
    tree[pos].lazy = tree[pos<<1].lazy && tree[pos<<1|1].lazy;
}
//void pushdown(int pos)
//{
//    if(!tree[pos].lazy)
//        return;
//    tree[pos<<1].sum += (tree[pos<<1].r-tree[pos<<1].l+1)*tree[pos].lazy;
//    tree[pos<<1|1].sum += (tree[pos<<1|1].r-tree[pos<<1|1].l+1)*tree[pos].lazy;
//    tree[pos<<1].lazy += tree[pos].lazy;
//    tree[pos<<1|1].lazy += tree[pos].lazy;
//    tree[pos].lazy = 0;
//}

void build(int l,int r,int pos)
{
    tree[pos].l = l;
    tree[pos].r = r;
    tree[pos].sum = 0;
    tree[pos].lazy = 0;
    if(l == r)
    {
        scanf("%I64d",&tree[pos].sum);
        return;
    }
    int mid = (l+r)/2;
    build(l,mid,pos<<1);
    build(mid+1,r,pos<<1|1);
    pushup(pos);
}                                                   //建树                                                  //查询操作

void update(int l,int r,int pos)
{
//    if(tree[pos].l == l && tree[pos].r == r)
//    {
//        tree[pos].sum += (r-l+1)*add;
//        tree[pos].lazy += add;
//        return ;
//    }
    if(tree[pos].l == tree[pos].r)
    {
        tree[pos].sum = sqrt(tree[pos].sum);
        if(tree[pos].sum <= 1)
            tree[pos].lazy = 1;
        return;
    }
    //pushdown(pos);
    int mid = (tree[pos].l + tree[pos].r) >> 1;
    if(r <= mid && !tree[pos<<1].lazy)
        update(l,r,pos<<1);
    else if(l > mid && !tree[pos<<1|1].lazy)
        update(l,r,pos<<1|1);
    else if(l <= mid && r > mid)
    {
        if(!tree[pos<<1].lazy)
        update(l,mid,pos<<1);
        if(!tree[pos<<1|1].lazy)
        update(mid+1,r,pos<<1|1);
    }
    pushup(pos);
}                                         //自上而下更新节点

long long query(int l,int r,int pos)
{
    if(l == tree[pos].l && r == tree[pos].r)
        return tree[pos].sum;
    //pushdown(pos);
    int mid = (tree[pos].l+tree[pos].r)>>1;
    if(r <= mid)
        return query(l,r,pos<<1);
    else if(l > mid)
        return query(l,r,pos<<1|1);
    else
        return query(l,mid,pos<<1) + query(mid+1,r,pos<<1|1);
}

int main()
{
    int t,n,m,C = 1;
    //scanf("%d",&t);
    while(scanf("%d",&n) != EOF)
    {
        int a,b,c;
        build(1,n,1);
        scanf("%d",&m);
        printf("Case #%d:\n",C++);
        for(int i = 1; i <= m; i++)
        {
            getchar();
            scanf("%d%d%d",&a,&b,&c);
            if(b > c)
                swap(b,c);
            if(a)
                printf("%I64d\n",query(b,c,1));
            else
                update(b,c,1);
        }
        printf("\n");
    }
    return 0;
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值