データ構造ハーネスツリーHDU 1754 I Hate It(シングルポイント更新)
1551 ワード
n課に、m回問い合わせる.
Q,a,bは問い合わせであり、[a,b]
U,a,bはa番目のポイントを更新してbに更新する.
単点更新、線分樹
Q,a,bは問い合わせであり、[a,b]
U,a,bはa番目のポイントを更新してbに更新する.
単点更新、線分樹
#include
#include
#include
#include
#include
using namespace std;
const int N=200005;
int Max[N<<2];
void PushUP(int rt){
//
Max[rt]=max(Max[rt<<1],Max[rt<<1|1]);
}
void build(int l,int r,int rt)
{
if(l==r){
scanf("%d",&Max[rt]);
return ;
}
int m=(l+r)>>1;
build(l,m,rt<<1);
build(m+1,r,rt<<1|1);
PushUP(rt);
}
void update(int p,int ss,int l,int r,int rt){
//p ,ss
if(l==r){// ,
Max[rt]=ss;
return ;
}
int m=(l+r)>>1;
if(p<=m) update(p,ss,l,m,rt<<1);
else update(p,ss,m+1,r,rt<<1|1);
//
PushUP(rt);
}
int query(int L,int R,int l,int r,int rt){
if(L<=l && r<=R){
return Max[rt];
}
int m=(l+r)>>1;
int ret=0;
if(L<=m) ret=max(ret,query(L,R,l,m,rt<<1));
if(R>m) ret=max(ret,query(L,R,m+1,r,rt<<1|1));
return ret;
}
int main()
{
int n,m;
while(~scanf("%d%d",&n,&m))
{
build(1,n,1);
while(m--){
char tmp[2];// %s ,
int a,b;
scanf("%s%d%d",&tmp,&a,&b);
if(tmp[0]=='Q'){
printf("%d
",query(a,b,1,n,1));
}
if(tmp[0]=='U'){
update(a,b,1,n,1);
}
}
}
return 0;
}