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

改变一个数的大小 重新确定其中的最大值

时间:2016-07-13 20:17:03      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:

#include<algorithm>
#include<iostream>
#include<cstdio>
#include<cstring>
#include<queue>
#include<math.h>
using namespace std;
#define N 210000
#define lson rood<<1
#define rson rood<<1|1
int w[N];
struct node
{
    int l,r,v,mid;
}a[N<<2];
void q(int rood,int l,int r)
{
    a[rood].l=l;a[rood].r=r;a[rood].mid=(r+l)/2;
    if(l==r)
    {
        a[rood].v=w[l];
        return ;
    }
    q(lson,l,a[rood].mid);
    q(rson,a[rood].mid+1,r);
    a[rood].v=max(a[lson].v,a[rson].v);
}
void qq(int rood,int l,int g)
{
    if(a[rood].l==l&&a[rood].r==l)
    {
        a[rood].v=g;
        return ;
    }
    if(a[rood].mid>=l) qq(lson,l,g);
    else qq(rson,l,g);
    a[rood].v=max(a[lson].v,a[rson].v);
}
int qqq(int rood,int l,int r)
{
    if(a[rood].l==l&&a[rood].r==r)
        return a[rood].v;
    if(a[rood].mid>=r) return qqq(lson,l,r);
    else if(a[rood].mid<l) return qqq(rson,l,r);
    else
    {
        int x=qqq(lson,l,a[rood].mid);
        int y=qqq(rson,a[rood].mid+1,r);
        return max(x,y);
    }
}
int main()
{
    int n,m,e,f;
    char str[12];
    while(scanf("%d%d",&n,&m)!=EOF)
    {
        for(int i=1;i<=n;i++)
            scanf("%d",&w[i]);
        q(1,1,n);
        while(m--)
        {
            scanf("%s%d%d",str,&e,&f);
            if(str[0]==Q)
            {
                printf("%d\n",qqq(1,e,f));
                continue;
            }
            qq(1,e,f);
        }
    }
    return 0;
}

http://acm.hdu.edu.cn/showproblem.php?pid=1754

改变一个数的大小 重新确定其中的最大值

标签:

原文地址:http://www.cnblogs.com/a719525932/p/5667199.html

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