Codeforces Round #262 (Div. 2) 1003

时间:2023-03-08 17:36:59

Codeforces Round #262 (Div. 2) 1003

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.

Sample test(s)

input

6 2 3 
2 2 2 2 1 1

output

2

input

2 5 1 
5 8

output

9

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.

想到了二分,但是没想到怎么处理记录每盆花的高度,很巧妙,pls表示当前花由前面的增加了多少,save记录这个点是不是正好w以外的点

 #include <cstring>

 #include <iostream>

 #include <algorithm>

 #include <cstdio>

 #include <cmath>

 #include <map>

 #include <cstdlib>

 #define M(a,b) memset(a,b,sizeof(a))

 #define INF 0x3f3f3f3f

 using namespace std;

 int n,m,w;

 int num[];

 int save[];

 bool check(int aim)

 {

     M(save,);

     int pls = ;

     int day = ;

     for(int i = ;i<n;i++)

     {

         pls += save[i];

         int tem = num[i] + pls;

         if(tem<aim)

         {

             int need = (aim-tem);

             day+=need;

             if(day>m) return false;

             pls+=need;

             save[i+w]-=need;

         }

     }

     return true;

 }

 int main()

 {

   scanf("%d%d%d",&n,&m,&w);

   int min = INF;

   int max = -INF;

   for(int i =  ; i<n; i++)

   {

       scanf("%d",&num[i]);

       if(num[i]<min) min = num[i];

       if(num[i]>max) max = num[i];

   }

   int l = min;

   int r = max + m;

   int ans = ;

   while(l<=r)

   {

       int mid = (l+r)/;

       //cout<<l<<' '<<r<<endl;

       if(check(mid))

         {

             ans = mid;

             l = mid+;

         }

       else

         r= mid-;

   }

   printf("%d\n",ans);

   return ;

 }