标签:
1 #include<cstdio> 2 #include<algorithm> 3 using namespace std; 4 5 const int maxn=200000*4+10; 6 7 int MAX[maxn]; 8 9 void pushplus(int rt) 10 { 11 MAX[rt]=max(MAX[rt<<1],MAX[rt<<1|1]); 12 } 13 14 void build(int l,int r,int rt) 15 { 16 if(l==r) 17 { 18 scanf("%d\n",&MAX[rt]); 19 return; 20 } 21 int temp=(l+r)>>1; 22 build(l,temp,rt<<1); 23 build(temp+1,r,rt<<1|1); 24 pushplus(rt); 25 } 26 27 int query(int L,int R,int l,int r,int rt) 28 { 29 int temp,ans=0; 30 if(l>=L&&r<=R) 31 return MAX[rt]; 32 temp=(l+r)>>1; 33 if(L<=temp) 34 ans=max(ans,query(L,R,l,temp,rt<<1)); 35 if(R>temp) 36 ans=max(ans,query(L,R,temp+1,r,rt<<1|1)); 37 return ans; 38 } 39 40 void update(int p,int val,int l,int r,int rt) 41 { 42 if(l==r) 43 { 44 MAX[rt]=val; 45 return; 46 } 47 int temp; 48 temp=(l+r)>>1; 49 if(p<=temp) 50 update(p,val,l,temp,rt<<1); 51 else 52 update(p,val,temp+1,r,rt<<1|1); 53 pushplus(rt); 54 } 55 56 int main() 57 { 58 int n,m,a,b; 59 char c; 60 while(scanf("%d%d",&n,&m)!=EOF) 61 { 62 build(1,n,1); 63 while(m--) 64 { 65 scanf("%c %d %d",&c,&a,&b); 66 getchar(); 67 if(c==‘Q‘) 68 { 69 int ans; 70 ans=query(a,b,1,n,1); 71 printf("%d\n",ans); 72 } 73 else 74 update(a,b,1,n,1); 75 } 76 } 77 return 0; 78 }
HDU 1754 I Hate It (线段树单点更新求最大值RMQ)
标签:
原文地址:http://www.cnblogs.com/homura/p/4701562.html