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

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

    Time Limit: 5 Sec  Memory Limit: 64 MB
    Submit: 858  Solved: 603
    [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

     题目翻译有毒... 最后靠百度划词自己翻译

    直接模拟暴力 2604ms


    研究了一下主流解法发现是线段树 364ms qwq

    Code

     1 #include<cstdio>
     2 #include<iostream>
     3 #include<algorithm>
     4 #define maxn 100000
     5 using namespace std;
     6 
     7 int n,arr[maxn],h[maxn],v[maxn];
     8 
     9 int main(){
    10     scanf("%d",&n);
    11     for(int i = 1;i <= n;i++){
    12         scanf("%d%d",&h[i],&v[i]);
    13     }
    14     
    15     for(int i = 1;i <= n;i++){
    16         for(int j = i+1;j <= n;j++){
    17             if(h[j] > h[i]){
    18                 arr[j] += v[i];
    19                 break;
    20             }
    21         }
    22     }
    23     
    24     for(int i = n;i >= 1;i--){
    25         for(int j = i-1;j >= 1;j--){
    26             if(h[j] > h[i]){
    27                 arr[j] += v[i];
    28                 break;
    29             }
    30         }
    31     }
    32     
    33     sort(arr+1,arr+1+n);
    34     
    35     printf("%d",arr[n]);
    36     
    37     return 0;
    38 } 
    暴力
    转载请注明出处 -- 如有意见欢迎评论
  • 相关阅读:
    python学习笔记(六)---文件操作与异常处理机制
    python学习笔记(五)---函数与类
    python学习笔记(四)---用户输入与while循环
    python学习笔记(三)---字典
    python学习笔记(二)---for循环与操作列表
    python学习笔记(一)---字符串与列表
    HTML
    80386汇编
    8086汇编语言
    网络设备配置--2、通过交换机划分vlan
  • 原文地址:https://www.cnblogs.com/Chorolop/p/7468452.html
Copyright © 2011-2022 走看看