#D8684. Largest Rectangle in a Histogram
Largest Rectangle in a Histogram
Largest Rectangle in a Histogram
A histogram is made of a number of contiguous bars, which have same width.
For a given histogram with bars which have a width of 1 and a height of = respectively, find the area of the largest rectangular area.
Constraints
Input
The input is given in the following format.
...
Output
Print the area of the largest rectangle.
Examples
Input
8 2 1 3 5 3 4 2 1
Output
12
Input
3 2 0 1
Output
2
inputFormat
Input
The input is given in the following format.
...
outputFormat
Output
Print the area of the largest rectangle.
Examples
Input
8 2 1 3 5 3 4 2 1
Output
12
Input
3 2 0 1
Output
2
样例
8
2 1 3 5 3 4 2 1
12