10
8
2015
2

3831: [Poi2014]Little Bird

3831: [Poi2014]Little Bird

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

   首先可以很显然的想到O(nk)的dp,\(f[i] = min(f[j]+(h[j]<=h[i]))\)。。

   但显然这是过不去的。。

   因为每一次的值只与之前的k个有关。。我们只要维护之前k个里的最优值就可以了。。显然的可以用单调队列维护当前符合条件的最优值。。然后转移。。这样的单次询问的复杂度就是O(n)的。。

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
const int N = 1000010;
struct data{int f,val,id;} stk[N],now;
int n,k,Q,h,t,val[N],f[N];
int read(){
	int x = 0,f = 1,c = getchar();
	while (c<'0' || c>'9') {if (c=='-') f = -1;c = getchar();}
	while (c>='0' && c<='9') x = x*10+c-'0',c = getchar();
	return x*f;
}
bool better(data a,data b){if (a.f==b.f) return a.val>b.val;return a.f<b.f;}
int main(){
	n = read();
	for (int i=1;i<=n;i++) val[i] = read();
	Q = read();
	while (Q--){
		k = read();h = 1;t = 1;
		stk[1] = (data){0,val[1],1};
		for (int i=2;i<=n;i++){
			while (h<=t && stk[h].id+k<i) h++;
			now = stk[h];
			f[i] = now.f+(now.val<=val[i]);
			now = (data){f[i],val[i],i};
			while (h<=t && better(now,stk[t])) t--;
			stk[++t] = now;
		}
		printf("%d\n",f[n]);
	}
}
Category: BZOJ题解 | Tags: | Read Count: 604
Avatar_small
PINKI 说:
2018年9月03日 08:16

A really well written post and something the writers of essayace.co.uk reliable are going to appreciate. All the best for all of your future work mate and I really hope you manage to go far in your field.

Avatar_small
dissertation writing 说:
2018年10月13日 04:03

The process of making ceramic products is hectic one and requires much patience and skill to get the desired product. your work is awesome and i think that it would gain more clarity with the passage of time.


登录 *


loading captcha image...
(输入验证码)
or Ctrl+Enter

Host by is-Programmer.com | Power by Chito 1.3.3 beta | Theme: Aeros 2.0 by TheBuckmaker.com