zoukankan      html  css  js  c++  java
  • [BZOJ1657] [Usaco2006 Mar] Mooo 奶牛的歌声 (单调栈)

    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

    Solution

      没啥说的,单调栈维护目前没有被听到的声音,前后各维护一次就行了

     1 #include <bits/stdc++.h>
     2 using namespace std;
     3 int h[50005], v[50005], w[50005], sta[50005], top;
     4  
     5 void push(int x)
     6 {
     7     while(top && h[x] > h[sta[top]])
     8         w[x] += v[sta[top--]];
     9     sta[++top] = x;
    10 }
    11  
    12 int main()
    13 {
    14     int n, ans = 0;
    15     scanf("%d", &n);
    16     for(int i = 1; i <= n; i++)
    17         scanf("%d%d", h + i, v + i);
    18     for(int i = 1; i <= n; i++)
    19         push(i);
    20     top = 0;
    21     for(int i = n; i; i--)
    22         push(i);
    23     for(int i = 1; i <= n; i++)
    24         ans = max(ans, w[i]);
    25     printf("%d
    ", ans);
    26     return 0;
    27 }
    View Code
  • 相关阅读:
    NPM (node package manager) 入门
    win10 环境 gitbash 显示中文乱码问题处理
    javascript中的Array对象 —— 数组的合并、转换、迭代、排序、堆栈
    Javascript 的执行环境(execution context)和作用域(scope)及垃圾回收
    Centos 下 mysql root 密码重置
    执行 $Gulp 时发生了什么 —— 基于 Gulp 的前端集成解决方案(二)
    Java I/O输入输出流详解
    反射---Java高级开发必须懂的
    细说Java多线程之内存可见性
    全面解析java注解
  • 原文地址:https://www.cnblogs.com/CtrlCV/p/5586097.html
Copyright © 2011-2022 走看看