标签: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; }
每天刷题,身体棒棒!
标签:name 线段树 shu int 线段 really font scan roo
原文地址:http://www.cnblogs.com/stxy-ferryman/p/7631634.html