CF610B.Vika and Squares
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Vika has n jars with paints of distinct colors. All the jars are numbered from 1 to n and the i -th jar contains ai liters of paint of color i .
Vika also has an infinitely long rectangular piece of paper of width 1 , consisting of squares of size 1×1 . Squares are numbered 1 , 2 , 3 and so on. Vika decided that she will start painting squares one by one from left to right, starting from the square number 1 and some arbitrary color. If the square was painted in color x , then the next square will be painted in color x+1 . In case of x=n , next square is painted in color 1 . If there is no more paint of the color Vika wants to use now, then she stops.
Square is always painted in only one color, and it takes exactly 1 liter of paint. Your task is to calculate the maximum number of squares that might be painted, if Vika chooses right color to paint the first square.
输入格式
The first line of the input contains a single integer n ( 1<=n<=200000 ) — the number of jars with colors Vika has.
The second line of the input contains a sequence of integers a1,a2,...,an ( 1<=ai<=109 ), where ai is equal to the number of liters of paint in the i -th jar, i.e. the number of liters of color i that Vika has.
输出格式
The only line of the output should contain a single integer — the maximum number of squares that Vika can paint if she follows the rules described above.
输入输出样例
输入#1
5 2 4 2 3 3
输出#1
12
输入#2
3 5 5 5
输出#2
15
输入#3
6 10 10 10 1 10 10
输出#3
11
说明/提示
In the first sample the best strategy is to start painting using color 4 . Then the squares will be painted in the following colors (from left to right): 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5.
In the second sample Vika can start to paint using any color.
In the third sample Vika should start painting using color number 5 .