Codeforces Round #262 (Div. 2) C Present

Little beaver is a beginner programmer, so informatics is his favorite subject. Soon his informatics teacher is going to have a birthday and the beaver has decided to prepare a present for her. He planted n flowers in a row on his windowsill and started waiting for them to grow. However, after some time the beaver noticed that the flowers stopped growing. The beaver thinks it is bad manners to present little flowers. So he decided to come up with some solutions.

There are m days left to the birthday. The height of thei-th flower (assume that the flowers in the row are numbered from1 to n from left to right) is equal toai at the moment. At each of the remainingm days the beaver can take a special watering and waterw contiguous flowers (he can do that only once at a day). At that each watered flower grows by one height unit on that day. The beaver wants the height of the smallest flower be as large as possible in the end. What maximum height of the smallest flower can he get?

Input

The first line contains space-separated integers n,m and w(1 ≤ w ≤ n ≤ 105; 1 ≤ m ≤ 105). The second line contains space-separated integersa1, a2, ..., an(1 ≤ ai ≤ 109).

Output

Print a single integer — the maximum final height of the smallest flower.

Sample test(s)
Input
6 2 3
2 2 2 2 1 1
Output
2
Input
2 5 1
5 8
Output
9

题目大意: N朵花排成一列,已知初始高度a[i],一共可以浇M次水,每次只能选择一个宽度为w的区间浇水,花每被浇一次水长高一个单位,要让最矮的花最高。


思路:最小值最大问题,二分最终结果。
     每次求出每朵花与目标高度的差,然后向右浇水。


 

#include <iostream>
#include <string>
#include <string.h>
#include <stdio.h>
using namespace std;
int d[300005];
int a[100005];
int n,m,w;
bool check(int x)
{
	memset(d,0,sizeof(d));
	int num=m;
	int tem=0;
	int h;
	for (int i=1;i<=n;i++)
	{
		tem+=d[i];
		h=a[i]+tem;
		if (h<x)
		{
			d[i+1]+=x-h;
			d[i+w]-=x-h;
			num-=x-h;
		}
		if (num<0) return 0;
	}
	return true;
}
int main()
{
	int ans,max;
	while (~scanf("%d%d%d",&n,&m,&w))
	{
		max=0;
		for (int i=1;i<=n;i++)
		{
			scanf("%d",&a[i]);
			if (max<a[i]) max=a[i];
		}
		int l=1,r=max+m;
		while (l<=r)
		{
			int mid=(l+r)/2;
			if (check(mid))
			{
				ans=mid;
				l=mid+1;
			}
			else r=mid-1;
		}
		printf("%d\n",ans);
	}
	return 0;
}











 
  
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值