Problem J
Junior price robot
Input
The first line of input contains a single integer $2 \leq n \leq 400\, 000$, the number of days for which you have collected price data for the item. On the second line of input follows $n$ space-separated integers $p_1, p_2, \ldots , p_{n}$, where $0 \leq p_ i \leq 2 \cdot 10^6$ is the price of the item $i-1$ days ago. Today’s price is $p_1$.
Output
A line containing today’s BarGain score.
Sample Input 1 | Sample Output 1 |
---|---|
6 9 10 11 9 12 11 |
3 |
Sample Input 2 | Sample Output 2 |
---|---|
3 1 2 3 |
infinity |