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,但并没有奶牛可以听见她的歌声.

    把左右传递拆开,首先从左往右扫一遍,维护一个单调递减的栈,每当退栈的时候就更新当前的答案,然后再反向搞一遍

    #include<cstdio>
    #include<cstring>
    #define N 50001
    inline int max(int a,int b)
    {return a>b?a:b;}
    inline int read()
    {
        int x=0,f=1;char ch=getchar();
        while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
        while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
        return x*f;
    }
    int n,now,mx,top;
    int h[N],v[N],zhan[N],ans[N];
    int main()
    {
    	n=read();
    	for (int i=1;i<=n;i++)
    	  {
    	  	h[i]=read();
    	  	v[i]=read();
    	  }
    	while (now<=n)
    	{
    		now++;
    		while (top&&h[now]>h[zhan[top]])ans[now]+=v[zhan[top--]];
    		mx=max(mx,ans[now]);
    		zhan[++top]=now;
    	}
    	top=now=0;now=n+1;
    	memset(zhan,0,sizeof(zhan));
    	while (now>=1)
    	{
    		now--;
    		while (top&&h[now]>h[zhan[top]])ans[now]+=v[zhan[top--]];
    		mx=max(mx,ans[now]);
    		zhan[++top]=now;
    	}
    	printf("%d",mx);
    }


    ——by zhber,转载请注明来源
  • 相关阅读:
    当···时发生了什么?
    数据存储-3、数据库分库分表思路
    数据存储-2、反模式设计
    数据存储-1、MySQL 索引使用的注意事项
    锁机制-4、synchronized 与 lock 的区别
    锁机制-3、synchronize 实现原理
    锁机制-1、乐观锁与悲观锁以及乐观锁的一种实现方式
    线程-11、线程的生命周期
    线程-10、线程池的几种方式
    线程-9、线程池的实现原理
  • 原文地址:https://www.cnblogs.com/zhber/p/4036037.html
Copyright © 2011-2022 走看看