#5262. Problem 1. Balanced Photo
Problem 1. Balanced Photo
Problem 1. Balanced Photo
USACO 2017 January Contest, Gold
Farmer John is arranging his cows in a line to take a photo (). The height of the th cow in sequence is , 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 looks "unbalanced" if and differ by more than factor of 2, where and are the number of cows taller than on her left and right, respectively. That is, is unbalanced if the larger of and 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.
INPUT FORMAT (file bphoto.in):
The first line of input contains . The next lines contain , each a nonnegative integer at most 1,000,000,000.
OUTPUT FORMAT (file bphoto.out):
Please output a count of the number of cows that are unbalanced.
SAMPLE INPUT:
7 34 6 23 0 5 99 2
SAMPLE OUTPUT:
3
In this example, the cows of heights 34, 5, and 2 are unbalanced.
Problem credits: Brian Dean