码迷,mamicode.com
首页 > 其他好文 > 详细

bzoj3831 [Poi2014]Little Bird 单调队列优化dp

时间:2017-12-25 17:01:38      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:diff   答案   mes   最小   first   sample   高度   fine   after   

3831: [Poi2014]Little Bird

Time Limit: 20 Sec  Memory Limit: 128 MB
Submit: 505  Solved: 322
[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

鸣谢zhonghaoxi

 

很裸的方程 f[i]=f[j]+(h[i]>=h[j]) i-j<=k
但是太大了肯定过不了,考虑dp优化
肯定f[j]越小转移过来肯定不会使答案更差 如果f[j]==f[k]就比高低,高度大的转移过来越小

 

 1 #include<cstdio>
 2 #include<iostream>
 3 #include<algorithm>
 4 #include<cstring>
 5 #define N 1000005
 6 using namespace std;
 7 int n,m,len,a[N],q[N],f[N];
 8 void solve(){
 9      int l=1,r=1;q[1]=1;f[1]=0;
10      for(int i=2;i<=n;i++){
11          while(l<=r&&i-q[l]>len)l++;
12          f[i]=f[q[l]]+(a[i]>=a[q[l]]);
13          while(l<=r&&(f[q[r]]>f[i]||(f[q[r]]==f[i]&&a[q[r]]<=a[i])))r--;
14          q[++r]=i; 
15      }
16      printf("%d\n",f[n]);
17 }
18 int main(){
19     scanf("%d",&n);
20     for(int i=1;i<=n;i++)scanf("%d",&a[i]);
21     scanf("%d",&m);
22     for(int i=1;i<=m;i++){
23         scanf("%d",&len);
24         solve();
25     }
26     return 0;
27 }

 

 

 

bzoj3831 [Poi2014]Little Bird 单调队列优化dp

标签:diff   答案   mes   最小   first   sample   高度   fine   after   

原文地址:http://www.cnblogs.com/wsy01/p/8109908.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!