博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
NOIP2013 花匠 DP 线段树优化
阅读量:5059 次
发布时间:2019-06-12

本文共 1390 字,大约阅读时间需要 4 分钟。

 网上一堆题解,我写的是N^2优化的那种,nlogn,O(n)的那种能看懂,但是让我自己在赛场写,肯定没戏了

#include 
#include
#include
#include
#include
#include
#include
#include
using namespace std;typedef long long LL;const int N=1e5+5;int a[N],b[N],n,cnt;int mx[2][N<<2];int now;void add(int rt,int l,int r,int pos,int t){ if(l==r){ mx[now][rt]=max(mx[now][rt],t); return; } int m=(l+r)>>1; if(pos<=m)add(rt<<1,l,m,pos,t); else add(rt<<1|1,m+1,r,pos,t); mx[now][rt]=max(mx[now][rt<<1],mx[now][rt<<1|1]); }int query(int rt,int l,int r,int x,int y){ if(x<=l&&r<=y) return mx[now][rt]; int ans=0; int m=(l+r)>>1; if(x<=m)ans=max(ans,query(rt<<1,l,m,x,y)); if(y>m)ans=max(ans,query(rt<<1|1,m+1,r,x,y)); return ans;}int main(){ scanf("%d",&n); for(int i=1;i<=n;++i) scanf("%d",&a[i]),b[i]=a[i]; sort(b+1,b+1+n); cnt=unique(b+1,b+1+n)-b-1; int pos=lower_bound(b+1,b+1+cnt,a[1])-b; int ans=1; now=0; add(1,1,cnt,pos,1); now=1; add(1,1,cnt,pos,1); for(int i=2;i<=n;++i){ pos=lower_bound(b+1,b+1+cnt,a[i])-b; if(pos!=1){ now=0; int tmp=query(1,1,cnt,1,pos-1)+1; ans=max(ans,tmp); now=1; add(1,1,cnt,pos,tmp); } if(pos!=cnt){ now=1; int tmp=query(1,1,cnt,pos+1,cnt)+1; ans=max(ans,tmp); now=0; add(1,1,cnt,pos,tmp); } } printf("%d\n",ans); return 0;}
View Code

 

转载于:https://www.cnblogs.com/shuguangzw/p/5378164.html

你可能感兴趣的文章
非对称加密
查看>>
bzoj 3413: 匹配
查看>>
从下周开始就要采用网上记录值班日志了
查看>>
在qq中可以使用添加标签功能
查看>>
eclipse 自定义布局
查看>>
团队项目开发客户端——登录子系统的设计
查看>>
【AppScan心得】IBM Rational AppScan 无法记录登录序列
查看>>
[翻译] USING GIT IN XCODE [4] 在XCODE中使用GIT[4]
查看>>
简化通知中心的使用
查看>>
SpringMVC的@Validated校验注解使用方法
查看>>
Python之os模块
查看>>
IO—》Properties类&序列化流与反序列化流
查看>>
【蓝桥杯】PREV-21 回文数字
查看>>
html 简介
查看>>
python使用上下文对代码片段进行计时,非装饰器
查看>>
js中比较实用的函数用法
查看>>
深入理解CPP与C中bsearch函数的用法
查看>>
安装预览版镜像后无法检测到预览版更新的解决方案
查看>>
【bzoj5099】[POI2018]Pionek 双指针法
查看>>
别让安全问题拖慢了 DevOps!
查看>>