CodeForces - 610B
Description 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. Input The first line of the input contains a single integer n (1 ≤ n ≤ 200 000) — 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. Output 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. Sample Input
Input
5
2 4 2 3 3
Output
12
Input
3
5 5 5
Output
15
Input
6
10 10 10 1 10 10
Output
11
Hint 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. //题意: 小明有有n罐油漆,并且每罐剩余的油漆量不同,现在他想把这些油漆刷在(1*无穷大)的墙上,每个1*1的正方形要消耗一升油漆,并且刷油漆的顺序是固定的(x--n--x--n...),也就是说你可以选择起始点(第几罐),但选择以后就得按照给定的油漆顺序进行循环,直到某一罐油漆耗完为止,才结束,问小明怎样选择起始点,才能使他刷的矩形最长。 //思路,就是模拟,找到最少的油漆m的位置,可能有多个,将这多个位置记录下来,先用n*m求出不用考虑刷完的情况的长度,然后再考虑刷完的情况,这就得遍历先前记录的最少油漆的位置了,找出相邻两个位置之间的最长长度即可。 //Hait:数很大,输入输出要注意;
|
CodeForces - 610B Vika and Squares (模拟)
原创mb643f91219020e 博主文章分类:codeforces ©著作权
©著作权归作者所有:来自51CTO博客作者mb643f91219020e的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
codeforces 610A Pasha and Stick
mit per test256 megabytesinputstandard inputoutputstandard outputPasha has a wooden stick of
codeforces math ide #include c++ -
CodeForces 158 B. Taxi(模拟)
【题目链接】
codeforces #include ios #endif -
【CodeForces】[610B]Vika and Squares
思路是首先有至少 最小的那一种*n次(注意数...
i++ 数据 #include NYOJ CodeForces -
【CodeForces】[610A]Pasha and Stick
可把数n当做由两个不同的偶数组合而成 问有多...
#include codeforces