zoukankan      html  css  js  c++  java
  • 单调队列应用--BZOJ 3831 Little Bird

    3831: [Poi2014]Little Bird

    Time Limit: 20 Sec  Memory Limit: 128 MB

    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.

     

    单调队列中的元素主要考虑它的时效性和价值,时效性用来删除队头,价值和时效性综合考虑删除队尾。

    单调队列中的时效性是越靠后(在队列中)越好,那么队列中元素的价值是:疲劳值和树高的综合考虑。

    注意,如果对于两个位置j1和j2,有f[j1]<f[j2],则j1一定比j2更优。因为就算j1高度比较矮,到达i顶多再多消耗1个疲劳值,顶多和j2相等。如果不需要消耗疲劳值,比j2更优。 如果f[j1]=f[j2],则我们比较它们的高度D,高度高的更优。

     1 #include<cstring>
     2 #define N 1000050
     3 #include<iostream>
     4 using namespace std;
     5 #include<cstdio>
     6 int Q[N],head=0,tail=1,n,m,k,hig[N];
     7 int f[N];
     8 void input()
     9 {
    10     scanf("%d",&n);
    11     for(int i=1;i<=n;++i)
    12       scanf("%d",&hig[i]);
    13 }
    14 bool cmp(int i,int j)
    15 {
    16     if(f[i]!=f[j]) return f[i]<f[j];
    17     return hig[i]>=hig[j];
    18 }
    19 int main()
    20 {
    21     input();    
    22     scanf("%d",&m);
    23     for(int i=1;i<=m;++i)
    24     {
    25         scanf("%d",&k);
    26         memset(Q,0,sizeof(Q));
    27         memset(f,0,sizeof(f));
    28         f[1]=0;head=0;tail=1;
    29         Q[0]=1;
    30         for(int j=2;j<=n;++j)
    31         {
    32             while(head<tail&&j-Q[head]>k) 
    33               head++;
    34             f[j]=f[Q[head]]+(hig[j]>=hig[Q[head]]);
    35             while(head<tail&&cmp(j,Q[tail-1])) 
    36               tail--;
    37             Q[tail++]=j;
    38         }
    39         printf("%d
    ",f[n]);
    40     }
    41     return 0;
    42 }
  • 相关阅读:
    软件RAID 0
    逻辑卷管理lvm
    磁盘配额quota
    合并 CentOS 6.8 的两个ISO镜像
    挂载mount
    非交互式添加分区
    磁盘分区-gdisk用法
    C博客作业01--分支、顺序结构
    C语言--第0次作业
    浅议正则表达式
  • 原文地址:https://www.cnblogs.com/c1299401227/p/5777798.html
Copyright © 2011-2022 走看看