5 6 1 2 3 4 5 Q 1 5 U 3 6 Q 3 4 Q 4 5 U 2 9 Q 1 5
5 6 5 9
Hint
Huge input,the C function scanf() will work better than cin
数组要开4倍,然后于是整个午休一直tle。。。
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
#include<cmath>
using namespace std;
#define rep(i,n) for(int i=1;i<=n;i++)
#define clr(x,c) memset(x,c,sizeof(x))
const int nmax=5000005;
const int inf=0x7fffffff;
struct edge{
int ql,qr,p,v,n;
int maxv[nmax];
void init(int n){
this->n=n;
}
void cc(){
clr(maxv,0);
}
int query(int l,int r,int k){
if(ql<=l&&qr>=r) return maxv[k];
int m=l+(r-l)/2;
int ans=-inf;
if(ql<=m) ans=max(ans,query(l,m,2*k));
if(qr>m) ans=max(ans,query(m+1,r,2*k+1));
return ans;
}
void insert(int l,int r,int k){
if(l==r){
maxv[k]=v;
}
else{
int m=l+(r-l)/2;
if(p<=m) insert(l,m,2*k);
else insert(m+1,r,2*k+1);
maxv[k]=max(maxv[2*k],maxv[2*k+1]);
}
}
int Query(int a,int b){
ql=a;
qr=b;
return query(1,n,1);
}
void Insert(int i,int val){
v=val;
p=i;
insert(1,n,1);
}
}st;
int main(){
int n,m;
while(scanf("%d%d",&n,&m)==2){
st.init(n);
st.cc();
for(int i=1;i<=n;i++){
int tmp;
scanf("%d",&tmp);
st.Insert(i,tmp);
}
for(int i=1;i<=m;i++){
char c;
int o,e;
while(scanf("%c",&c) && !isupper(c));
scanf("%d%d",&o,&e);
if(c==‘Q‘) printf("%d\n",st.Query(o,e));
else st.Insert(o,e);
}}
return 0;
}