A10087 | Vika and Squares
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Vika has $n$ jars with paints of distinct colors. All the jars are numbered from $1$ to $n$ and the $i$ -th jar contains $a_{i}$ 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.
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 $a_{1},a_{2},...,a_{n}$ ( $1<=a_{i}<=10^{9}$ ), where $a_{i}$ 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 second line of the input contains a sequence of integers $a_{1},a_{2},...,a_{n}$ ( $1<=a_{i}<=10^{9}$ ), where $a_{i}$ 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$ .
In the second sample Vika can start to paint using any color.
In the third sample Vika should start painting using color number $5$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted