【codeforces】-#610B-Vika and Squares(一串数循环一圈后递减,遇0结束,求最大)

本文介绍了一个有趣的涂色挑战问题,Vika使用不同颜色的油漆在一串无限长的1x1方格纸上进行涂色。文章详细解释了涂色规则,并提供了一段C++代码实现解决方案,用于计算在最优策略下能涂色的最大方格数量。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

B. Vika and Squares
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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 123and 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.

Examples
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
Note

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.


找出所以相等的最小的数,再计算出距离最大的两个间距。注意最后需要比较一次第一个最小的数和最后一个最小的数之间的距离和选出来的最大距离的大小,其他就是数学啦~~~~wa了好多次,伤心,但也挺开心,嘿嘿(∩_∩)


#include<stdio.h>
int main()
{
	int n;
	int a[2200000];
	int b[2220000];
	__int64 y,ans;
	int num;
	while(~scanf("%d",&n))
	{
		num=0;
		scanf("%d",&a[1]);
		y=a[1];
		for(int i=2;i<=n;i++)
		{
			scanf("%d",&a[i]);
			if(a[i]<y)
				y=a[i];
		}
		for(int i=1;i<=n;i++)
		{
			if(a[i]==y)
			{
				num++;
				b[num]=i;
			}
		}
		if(num==1)
			printf("%I64d\n",y*n+(n-1));
		else
		{
			ans=b[2]-b[1]-1;
			for(int i=3;i<=num;i++)
			{
				if(b[i]-b[i-1]>ans)
				{ 
					ans=b[i]-b[i-1]-1;
				} 
			}
			if(n-b[num]+b[1]-1>ans)
				ans=n-b[num]+b[1]-1;
			printf("%I64d\n",y*n+ans);
		}
	}
	return 0;
} 





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值