zoukankan      html  css  js  c++  java
  • [BZOJ] 1657: [Usaco2006 Mar]Mooo 奶牛的歌声

    1657: [Usaco2006 Mar]Mooo 奶牛的歌声

    Time Limit: 5 Sec  Memory Limit: 64 MB
    Submit: 867  Solved: 610
    [Submit][Status][Discuss]

    Description

    Farmer John's N (1 <= N <= 50,000) cows are standing in a very straight row and mooing. Each cow has a unique height h in the range 1..2,000,000,000 nanometers (FJ really is a stickler for precision). Each cow moos at some volume v in the range 1..10,000. This "moo" travels across the row of cows in both directions (except for the end cows, obviously). Curiously, it is heard only by the closest cow in each direction whose height is strictly larger than that of the mooing cow (so each moo will be heard by 0, 1 or 2 other cows, depending on not whether or taller cows exist to the mooing cow's right or left). The total moo volume heard by given cow is the sum of all the moo volumes v for all cows whose mooing reaches the cow. Since some (presumably taller) cows might be subjected to a very large moo volume, FJ wants to buy earmuffs for the cow whose hearing is most threatened. Please compute the loudest moo volume heard by any cow.

    Farmer John的N(1<=N<=50,000)头奶牛整齐地站成一列“嚎叫”。每头奶牛有一个确定的高度h(1<=h<=2000000000),叫的音量为v (1<=v<=10000)。每头奶牛的叫声向两端传播,但在每个方向都只会被身高严格大于它的最近的一头奶牛听到,所以每个叫声都只会 被0,1,2头奶牛听到(这取决于它的两边有没有比它高的奶牛)。 一头奶牛听到的总音量为它听到的所有音量之和。自从一些奶牛遭受巨大的音量之后,Farmer John打算买一个耳罩给被残害得最厉 害的奶牛,请你帮他计算最大的总音量。

    Input

    * Line 1: A single integer, N.

    * Lines 2..N+1: Line i+1 contains two space-separated integers, h and v, for the cow standing at location i.

        第1行:一个正整数N.

        第2到N+1行:每行包括2个用空格隔开的整数,分别代表站在队伍中第i个位置的奶牛的身高以及她唱歌时的音量.

    Output

    * Line 1: The loudest moo volume heard by any single cow.

        队伍中的奶牛所能听到的最高的总音量.

    Sample Input

    3
    4 2
    3 5
    6 10

    INPUT DETAILS:

    Three cows: the first one has height 4 and moos with volume 2, etc.

    Sample Output

    7

    HINT

         队伍中的第3头奶牛可以听到第1头和第2头奶牛的歌声,于是她能听到的总音量为2+5=7.虽然她唱歌时的音量为10,但并没有奶牛可以听见她的歌声.

    Source

    Silver

    Analysis

    单调队列

    就不画图了qwq

    单调队列的流程是从 1-n 和 n-1 分别扫一遍,代码是完全一样的只是 i 的遍历顺序不同

    那么对于一个奶牛 j ,他的歌声如果要传到奶牛 i 那里,i 和 j 之间不能有阻挡

    而且是严格大于,没有等

    所以突然就有了单调性

    用单调队列过一遍,当队首的元素小于当前元素时将队首弹出

    (当前元素大于队列中所有元素的时候,全部弹出)

    弹到不能弹后,队头元素就可以听到当前元素的歌声了

    然后把当前元素塞进队首

    Code

     1 /**************************************************************
     2     Problem: 1657
     3     User: child
     4     Language: C++
     5     Result: Accepted
     6     Time:84 ms
     7     Memory:16912 kb
     8 ****************************************************************/
     9  
    10 #include<cstdio>
    11 #include<iostream>
    12 #define maxn 1000000
    13 using namespace std;
    14  
    15 int queue[maxn],tail,head,ans[maxn],n,high[maxn],ret,vol[maxn];
    16  
    17 int main(){
    18     scanf("%d",&n);
    19      
    20     for(int i = 1;i <= n;i++){
    21         scanf("%d%d",&high[i],&vol[i]);
    22     }
    23      
    24     for(int i = 1;i <= n;i++){
    25         while(high[queue[head]] <= high[i] && head > tail)
    26             head--;
    27 //      while(high[queue[tail+1]] > high[queue[head]] && head > tail)
    28 //          tail++;
    29         if(head > tail) ans[queue[head]] += vol[i];
    30         queue[++head] = i;
    31     }
    32      
    33     head = tail = 0;
    34      
    35     for(int i = n;i >= 1;i--){
    36         while(high[queue[head]] <= high[i] && head > tail)
    37             head--;
    38 //      while(high[queue[tail+1]] > high[queue[head]] && head > tail)
    39 //          tail++;
    40         if(head > tail) ans[queue[head]] += vol[i];
    41         queue[++head] = i;
    42     }
    43      
    44     for(int i = 1;i <= n;i++){
    45         ret = max(ret,ans[i]);
    46     }
    47      
    48     printf("%d",ret);
    49      
    50     return 0;
    51 }
    心情奇差无比qwq
    转载请注明出处 -- 如有意见欢迎评论
  • 相关阅读:
    《C》指针
    《C》变量
    《C》数组
    《C》VS控制台应用
    listagg wm_concat 行转列
    Linux学习之shell script
    Linux学习之正则表达式sed
    Linux学习之正则表达式grep
    Linux学习之SAMBA共享(密码验证)
    Linux学习之SAMBA共享(无密码)
  • 原文地址:https://www.cnblogs.com/Chorolop/p/7494242.html
Copyright © 2011-2022 走看看