1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
| #include<cstdio> #include<cmath> #include<queue> const int SIZE=100005; int LC[SIZE<<2]; int RC[SIZE<<2]; int CS[SIZE<<2]; int a[SIZE]; int N,M; template <class typeone> typeone max(typeone x,typeone y) { return x>y? x:y; } template <class typeone > typeone min(typeone x,typeone y) { return x<y? x:y; } void pushup(int l,int r,int lr) { LC[lr]=LC[lr<<1]; RC[lr]=RC[lr<<1|1]; CS[lr]=0; int m=(l+r)>>1; if(a[m]<a[m+1]) { CS[lr]=RC[lr<<1]+LC[lr<<1|1]; if(LC[lr]==m-l+1) { LC[lr]+=LC[lr<<1|1]; } if(RC[lr]==r-m) { RC[lr]+=RC[lr<<1]; } } CS[lr]=max(CS[lr],max(CS[lr<<1],CS[lr<<1|1])); return; }
void build(int l,int r,int rt) { LC[rt]=RC[rt]=CS[rt]=0; if(l==r) { LC[rt]=RC[rt]=CS[rt]=1; scanf("%d",&a[l]); return ; } int m=(l+r)>>1; build(l,m,rt<<1); build(m+1,r,rt<<1|1); pushup(l,r,rt); return ; } void update(int pos,int l,int r,int rt,int val) { if(l==pos&&r==pos) { a[pos]=val; return; } int m=(l+r)>>1; if(pos<=m) { update(pos,l,m,rt<<1,val); } else { update(pos,m+1,r,rt<<1|1,val); } pushup(l,r,rt); return ; } int query(int L,int R,int l,int r,int rt) { if(L<=l&&R>=r) { return CS[rt]; } int m=(l+r)>>1; if(R<=m) { return query(L,R,l,m,rt<<1); } else if(L>m) { return query(L,R,m+1,r,rt<<1|1); } else { int t1=0,t2=0,t3=0; t1=query(L,R,l,m,rt<<1); t2=query(L,R,m+1,r,rt<<1|1); if(a[m]<a[m+1]) { t3=min(LC[rt<<1|1],R-m)+min(RC[rt<<1],m-L+1); } return max(t3,max(t1,t2)); } } int main() { int T; while(~scanf("%d",&T)) { while(T--) { char k[2]; scanf("%d %d",&N,&M); build(1,N,1); int x,y; // getchar(); while(M--) { scanf("%s %d %d",&k,&x,&y); if(strcmp(k,"Q")==0) { printf("%d\n",query(x+1,y+1,1,N,1)); } else { update(x+1,1,N,1,y); } } } } return 0; }
|