bzoj3831 [Poi2014]Little Bird

网友投稿 807 2022-08-29

bzoj3831 [Poi2014]Little Bird

bzoj3831 [Poi2014]Little Bird

​​ 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 题意:给定每次小鸟跳跃的距离 求我从1~n花费的最小代价是多少 跳到不低于我的地方就会花费一体力值 那么我可以用一个单调队列 维护这一个区间内的体力最小值 Notice:在维护单调队列的时候如果体力值相同记得按照高度递减来维护

#include#include#define N 1100000#define inf 0x3f3f3f3fusing namespace std;inline char gc(){ static char now[1<<16],*S,*T; if (T==S){T=(S=now)+fread(now,1,1<<16,stdin);if (T==S) return EOF;} return *S++; }inline int read(){ int x=0,f=1;char ch=gc(); while(ch<'0'||ch>'9') {if (ch=='-') f=-1;ch=gc();} while(ch<='9'&&ch>='0') x=x*10+ch-'0',ch=gc(); return x*f;}int n,h[N],m,dp[N],q[N];int main(){ freopen("bzoj3831.in","r",stdin); n=read();for (int i=1;i<=n;++i) h[i]=read(); m=read(); while(m--){ int l=1,r=0,s=read();q[++r]=1;dp[1]=0; for (int i=2;i<=n;++i){ while(l<=r&&i-q[l]>s) ++l; if (l<=r) { int j=q[l];if (h[i]=h[q[r]])) --r;q[++r]=i; }printf("%d\n",dp[n]); } return 0;}

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:盘点 15 个好用的 API 接口管理神器(盘点库存的方法)
下一篇:bzoj3675&UOJ104 [Apio2014]序列分割
相关文章

 发表评论

暂时没有评论,来抢沙发吧~