首页 > 洛谷P3572 [POI2014]PTA-Little Bird

洛谷P3572 [POI2014]PTA-Little Bird

P3572 [POI2014]PTA-Little Bird

题目描述

In the Byteotian Line Forest there are nn 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. i, then in a single flight leg it can fly toany of the trees no. i+1,i+2,cdots,i+ki+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 leastas 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 leasttiresome, 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 getfrom 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 kk.

Help all the birds, little and big!

从1开始,跳到比当前矮的不消耗体力,否则消耗一点体力,每次询问有一个步伐限制,求每次最少耗费多少体力

输入输出格式

输入格式:

 

There is a single integer nn (2le nle 1 000 0002n1 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 nn integers d_1,d_2,cdots,d_nd1​​,d2​​,,dn​​ (1le d_ile 10^91di​​109​​)separated by single spaces: d_idi​​ is the height of the i-th tree.

The third line of the input holds a single integer qq (1le qle 251q25): the number of birds whoseflights need to be planned.

The following qq lines describe these birds: in the ii-th of these lines, there is an integer k_iki​​ (1le k_ile n-11ki​​n1) specifying the ii-th bird's stamina. In other words, the maximum number of trees that the ii-th bird can pass before it has to rest is k_i-1ki​​1.

 

输出格式:

 

Your program should print exactly qq lines to the standard output.

In the ii-th line, it should specify the minimum number of tiresome flight legs of the ii-th bird.

 

输入输出样例

输入样例#1:

9
4 6 3 6 3 7 2 6 5
2
2
5
输出样例#1:

2
1

说明

从1开始,跳到比当前矮的不消耗体力,否则消耗一点体力,每次询问有一个步伐限制,求每次最少耗费多少体力

#include
#include
#include
#define maxn 1000010
using namespace std;
int n,a[maxn],dp[maxn],q;
int main(){scanf("%d",&n);for(int i=1;i<=n;i++)scanf("%d",&a[i]);scanf("%d",&q);int limit;for(int i=1;i<=q;i++){scanf("%d",&limit);memset(dp,127/3,sizeof(dp));dp[1]=0;for(int i=2;i<=n;i++){for(int j=i-1;i-j<=limit&&j>=1;j--){if(a[j]>a[i])dp[i]=min(dp[i],dp[j]);else dp[i]=min(dp[i],dp[j]+1);}}printf("%d
",dp[n]);}
}
40分 暴力dp
/*非常标准的单调队列优化dp维护两个单调性,首先是dp[]单调递减,其次是a[]单调递增 
*/
#include
#include
#include
#define maxn 1000010
using namespace std;
int n,op,a[maxn],dp[maxn],q[maxn],h,t;
int main(){scanf("%d",&n);for(int i=1;i<=n;i++)scanf("%d",&a[i]);scanf("%d",&op);int limit;for(int i=1;i<=op;i++){scanf("%d",&limit);h=1,t=1;dp[1]=0;q[1]=1;for(int i=2;i<=n;i++){while(t-h>=0&&i-q[h]>limit)h++;dp[i]=dp[q[h]]+(a[q[h]]<=a[i]);while(t-h>=0&&((dp[q[t]]>dp[i])||(dp[q[t]]==dp[i]&&a[q[t]];q[++t]=i;}printf("%d
",dp[n]);}
}
100分 单调队列优化dp

 

转载于:https://www.cnblogs.com/thmyl/p/7494621.html

更多相关:

  • 上篇笔记中梳理了一把 resolver 和 balancer,这里顺着前面的流程走一遍入口的 ClientConn 对象。ClientConn// ClientConn represents a virtual connection to a conceptual endpoint, to // perform RPCs. // //...

  • 我的实验是基于PSPNet模型实现二维图像的语义分割,下面的代码直接从得到的h5文件开始往下做。。。 也不知道是自己的检索能力出现了问题还是咋回事,搜遍全网都没有可以直接拿来用的语义分割代码,东拼西凑,算是搞成功了。 实验平台:Windows、VS2015、Tensorflow1.8 api、Python3.6 具体的流程为:...

  • Path Tracing 懒得翻译了,相信搞图形学的人都能看得懂,2333 Path Tracing is a rendering algorithm similar to ray tracing in which rays are cast from a virtual camera and traced through a s...

  • configure_file( [COPYONLY] [ESCAPE_QUOTES] [@ONLY][NEWLINE_STYLE [UNIX|DOS|WIN32|LF|CRLF] ]) 我遇到的是 configure_file(config/config.in ${CMAKE_SOURCE_DIR}/...

  •     直接复制以下代码创建一个名为settings.xml的文件,放到C:UsersAdministrator.m2下即可