记录编号 471238 评测结果 AAAAAAAAAA
题目名称 [NOIP 2013]花匠 最终得分 100
用户昵称 GravatarHzoi_Mafia 是否通过 通过
代码语言 C++ 运行时间 1.916 s
提交时间 2017-11-06 08:47:19 内存使用 1.46 MiB
显示代码纯文本
  1. #include <iostream>
  2. #include <cstring>
  3. #include <cstdio>
  4. using namespace std;
  5. inline int read(){
  6. int sum(0);char ch(getchar());
  7. for(;ch<'0'||ch>'9';ch=getchar());
  8. for(;ch>='0'&&ch<='9';sum=sum*10+(ch^48),ch=getchar());
  9. return sum;
  10. }
  11. struct node{
  12. node *lch,*rch;
  13. int mx;
  14. node():lch(NULL),rch(NULL),mx(0){}
  15. inline void pushup(){this->mx=max(this->lch->mx,this->rch->mx);}
  16. }*root[2];
  17. inline void build(int l,int r,node *&x){
  18. x=new node;if(l==r)return;int mid((l+r)>>1);
  19. build(l,mid,x->lch);build(mid+1,r,x->rch);
  20. }
  21. inline void update(int pos,int w,int l,int r,node *x){
  22. if(l==r){x->mx=w;return;}int mid((l+r)>>1);
  23. if(pos<=mid)update(pos,w,l,mid,x->lch);
  24. else update(pos,w,mid+1,r,x->rch);
  25. x->pushup();
  26. }
  27. inline int query(int ll,int rr,int l,int r,node *x){
  28. if(ll<=l&&r<=rr)return x->mx;int mid((l+r)>>1),ret(0);
  29. if(ll<=mid)ret=query(ll,rr,l,mid,x->lch);
  30. if(mid<rr)ret=max(ret,query(ll,rr,mid+1,r,x->rch));
  31. return ret;
  32. }
  33. const int size(1000000);
  34. int n;
  35. int h[100005],f[100005][2];
  36. int main(){
  37. freopen("FlowerNOIP2013.in","r",stdin);freopen("FlowerNOIP2013.out","w",stdout);
  38. n=read();build(0,size,root[0]);build(0,size,root[1]);
  39. for(int i=1;i<=n;++i)h[i]=read();
  40. f[1][0]=f[1][1]=1;update(h[1],1,0,size,root[0]);update(h[1],1,0,size,root[1]);
  41. for(int i=2;i<=n;++i){
  42. if(h[i]){
  43. f[i][0]=query(0,h[i]-1,0,size,root[1])+1;
  44. update(h[i],f[i][0],0,size,root[0]);
  45. }
  46. if(h[i]<size){
  47. f[i][1]=query(h[i]+1,size,0,size,root[0])+1;
  48. update(h[i],f[i][1],0,size,root[1]);
  49. }
  50. }
  51. printf("%d",max(query(0,size,0,size,root[0]),query(0,size,0,size,root[1])));
  52. }