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

HDU1754 I hate it(线段树 单点修改)

时间:2017-10-06 16:25:12      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:name   线段树   shu   int   线段   really   font   scan   roo   

好久没打线段树,来一道练练手,但说句实话,I really hate it!!!!

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#define N 200010
#define lson root<<1
#define rson root<<1|1
using namespace std;
 
int node[N<<2];

void pushup(int root)
{
    node[root]=max(node[lson],node[rson]);
}

void build(int l,int r,int root)
{
    if(l==r)
    {
        scanf("%d",&node[root]);
        return;
    }
    int mid=(l+r)>>1;
    build(l,mid,lson);
    build(mid+1,r,rson);
    pushup(root);
}

void update(int a,int b,int l,int r,int root)
{
    if(l==r)
    {
        node[root]=b;
        return;
    }
    int mid=(l+r)>>1;
    if(a<=mid)
    {
        update(a,b,l,mid,lson);
    }
    else
    {
        update(a,b,mid+1,r,rson);
    }
    pushup(root);
}

int query(int a,int b,int l,int r,int root)
{
    if(a<=l&&b>=r)
    {
        return node[root];
    }
    int mid=(l+r)>>1;
    int ans=0;
    if(a<=mid)
    {
        ans=max(ans,query(a,b,l,mid,lson));
    }
    if(b>mid)
    {
        ans=max(ans,query(a,b,mid+1,r,rson));
    }
    return ans;
}

int main()
{
    int n,m;
    while(scanf("%d%d",&n,&m)!=EOF)
    {
        build(1,n,1);
        while(m--)
        {
            char c;
            int a,b;
            scanf(" %c %d%d",&c,&a,&b);
            if(c==Q)
            {
                int ans=query(a,b,1,n,1);
                printf("%d\n",ans);
            }
            else
            {
                update(a,b,1,n,1);
            }
        }    
    }
    return 0;
}

 

 

每天刷题,身体棒棒!

HDU1754 I hate it(线段树 单点修改)

标签:name   线段树   shu   int   线段   really   font   scan   roo   

原文地址:http://www.cnblogs.com/stxy-ferryman/p/7631634.html

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