DP/单调队列优化


水题水题水题水题

单调队列优化的线性dp……

WA了8次QAQ,就因为我写队列是[l,r),但是实际操作取队尾元素的时候忘记了……不怎么从队尾取元素嘛……平时都是直接往进放的……还是得记住这个双端队列的错点啊!!

 //BZOJ 3831
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<iostream>
#include<algorithm>
#define rep(i,n) for(int i=0;i<n;++i)
#define F(i,j,n) for(int i=j;i<=n;++i)
#define D(i,j,n) for(int i=j;i>=n;--i)
using namespace std;
const int N=,INF=~0u>>;
//#define debug
int n,m,a[N],f[N],q[N]; int main(){
#ifndef ONLINE_JUDGE
freopen("file.in","r",stdin);
#endif
scanf("%d",&n);
F(i,,n) scanf("%d",&a[i]); scanf("%d",&m);
while(m--){
int l=,r=,k=;
memset(q,,sizeof q); scanf("%d",&k);
f[]=f[]=;
q[r++]=;
F(i,,n){
while(q[l]+k<i && l<r) l++;
f[i]=f[q[l]] + ((a[q[l]]<=a[i]) ? : ) ;
while( ((f[i]<f[q[r-]]) || (f[i]==f[q[r-]] && a[i]>=a[q[r-]])) && l<r) r--;
q[r++]=i;
}
printf("%d\n",f[n]);
}
return ;
}

3831: [Poi2014]Little Bird

Time Limit: 20 Sec  Memory Limit: 128 MB
Submit: 191  Solved: 114
[Submit][Status][Discuss]

Description

In
the Byteotian Line Forest there are   trees in a row. On top of the
first one, there is a little bird who would like to fly over to the top
of the last tree. Being in fact very little, the bird might lack the
strength to fly there without any stop. If the bird is sitting on top of
the tree no.  , then in a single flight leg it can fly to any of the
trees no.i+1,i+2…I+K, and then has to rest afterward.
Moreover, flying up is far harder to flying down. A flight leg is
tiresome if it ends in a tree at least as high as the one where is
started. Otherwise the flight leg is not tiresome.
The goal is to select the trees on which the little bird will land
so that the overall flight is least tiresome, i.e., it has the minimum
number of tiresome legs. We note that birds are social creatures, and
our bird has a few bird-friends who would also like to get from the
first tree to the last one. The stamina of all the birds varies, so the
bird's friends may have different values of the parameter  . Help all
the birds, little and big!
有一排n棵树,第i棵树的高度是Di。
MHY要从第一棵树到第n棵树去找他的妹子玩。
如果MHY在第i棵树,那么他可以跳到第i+1,i+2,...,i+k棵树。
如果MHY跳到一棵不矮于当前树的树,那么他的劳累值会+1,否则不会。
为了有体力和妹子玩,MHY要最小化劳累值。

Input

There is a single
integer N(2<=N<=1 000 000) in the first line of the standard
input: the number of trees in the Byteotian Line Forest. The second line
of input holds   integers D1,D2…Dn(1<=Di<=10^9) separated by
single spaces: Di is the height of the i-th tree.
The third line of the input holds a single integer
Q(1<=Q<=25): the number of birds whose flights need to be planned.
The following Q lines describe these birds: in the i-th of these lines,
there is an integer Ki(1<=Ki<=N-1) specifying the i-th bird's
stamina. In other words, the maximum number of trees that the i-th bird
can pass before it has to rest is Ki-1.

Output

Your program
should print exactly Q lines to the standard output. In the I-th line,
it should specify the minimum number of tiresome flight legs of the i-th
bird.

Sample Input

9
4 6 3 6 3 7 2 6 5
2
2
5

Sample Output

2
1

HINT

Explanation: The first bird may stop at the trees no. 1, 3, 5, 7, 8, 9. Its tiresome flight legs will be the one from the 3-rd tree to the 5-th one and from the 7-th to the 8-th.

Source

[Submit][Status][Discuss]

最新文章

  1. Mybatis常用总结:参数,返回,执行sql,include等
  2. java良好的编码习惯
  3. 几个CSS3动画
  4. vim使用过程
  5. Java并发编程-CopyOnWriteArrayList
  6. $(document).ready vs $(window).load vs window.onload
  7. Android ClearEditText:输入用户名、密码错误时整体删除及输入为空时候晃动提示
  8. Android 各个版本WebView
  9. [C#]递归遍历文件夹
  10. heap(堆)和stack(栈)的区别
  11. Win8 App使用Listview的简单方法
  12. jQuery实时获取checkbox状态问题
  13. 详解Spring
  14. net中使用ETW事件
  15. 转:NSString什么时候用copy,什么时候用strong
  16. css 字体两端对齐
  17. Spring IOC(三)依赖注入
  18. [国家集训队]整数的lqp拆分
  19. vue项目中postcss-pxtorem的使用及webpack中的配置 css中单位px和em,rem的区别
  20. Nginx负载均衡中后端节点服务器健康检查的一种简单方式

热门文章

  1. Knockout.Js官网学习(html绑定、css绑定)
  2. Linux服务器的初步配置流程
  3. Java实现计算20的阶乘
  4. nexcel 读取 excel
  5. shell括号操作符
  6. oracle11g rman验证备份有效性
  7. 有关GIT
  8. 九度oj 1184 二叉树遍历
  9. android EditText获取光标位置并安插字符删除字符
  10. Android内存管理机制