Codeforces Round #262 (Div. 2) C_html/css_WEB-ITnose

php中文网
发布: 2016-06-24 11:59:30
原创
938人浏览过

题目:

C. Present

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

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 the i-th flower (assume that the flowers in the row are numbered from 1 to n from left to right) is equal to ai at the moment. At each of the remaining m days the beaver can take a special watering and water w 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 integers a1,?a2,?...,?an (1?≤?ai?≤?109).

Output

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

div+css3阶梯分页样式
div+css3阶梯分页样式

div+css3阶梯分页样式

div+css3阶梯分页样式84
查看详情 div+css3阶梯分页样式

Sample test(s)

input

6 2 32 2 2 2 1 1
登录后复制

output

input

2 5 15 8
登录后复制

output

Note

In the first sample beaver can water the last 3 flowers at the first day. On the next day he may not to water flowers at all. In the end he will get the following heights: [2, 2, 2, 3, 2, 2]. The smallest flower has height equal to 2. It's impossible to get height 3 in this test.

立即学习前端免费学习笔记(深入)”;


题意分析:

二分答案,然后check一下。代码借用的别人的,自己的太丑。


代码:

#include<cstdio>#include<cstring>#include<iostream>#include<algorithm>using namespace std;const int inf=1<<30;const int maxn=2e5+100;int n,m,w,a[maxn];int tot[maxn];bool check(int val){    memset(tot,0,sizeof(tot));    int now=0,res=m;    for(int i=1;i<=n;i++)    {        now+=tot[i];        if(a[i]+now<val)        {            res-=val-a[i]-now;            if(res<0)                return false;            tot[i+w]-=val-a[i]-now;            now+=val-a[i]-now;        }    }    return true;}int main(){    while(scanf("%d%d%d",&n,&m,&w)!=EOF)    {        memset(tot,0,sizeof(tot));        int l=0,r=inf;        for(int i=1;i<=n;i++)        {            scanf("%d",&a[i]);            r=max(a[i],r);        }        int ans=0;        while(l<=r)        {            int mid=(l+r)>>1;            if(check(mid))            {                ans=mid;                l=mid+1;            }            else                r=mid-1;        }        printf("%d\n",ans);    }    return 0;}
登录后复制


HTML速学教程(入门课程)
HTML速学教程(入门课程)

HTML怎么学习?HTML怎么入门?HTML在哪学?HTML怎么学才快?不用担心,这里为大家提供了HTML速学教程(入门课程),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号