A883.Balanced Photo--Gold

普及+/提高

USACO

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

Farmer John is arranging his NN cows in a line to take a photo (1N100,0001 \leq N \leq 100,000). The height of the iith cow in sequence is hih_i, and the
heights of all cows are distinct.
As with all photographs of his cows, FJ wants this one to come out looking as
nice as possible. He decides that cow ii looks "unbalanced" if LiL_i and
RiR_i differ by more than factor of 2, where LiL_i and RiR_i are the number of
cows taller than ii on her left and right, respectively. That is, ii is
unbalanced if the larger of LiL_i and RiR_i is strictly more than twice the
smaller of these two numbers. FJ is hoping that not too many of his cows are
unbalanced.
Please help FJ compute the total number of unbalanced cows.

输入格式

The first line of input contains NN. The next NN lines contain h1hNh_1 \ldots h_N, each a nonnegative integer at most 1,000,000,000.

输出格式

Please output a count of the number of cows that are unbalanced.

输入输出样例

  • 输入#1

    7
    34
    6
    23
    0
    5
    99
    2
    

    输出#1

    3
    

说明/提示

In this example, the cows of heights 34, 5, and 2 are unbalanced.

首页