程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> CodeForces 460C--- Present(二分+貪心)

CodeForces 460C--- Present(二分+貪心)

編輯:C++入門知識

CodeForces 460C--- Present(二分+貪心)


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.

二分+貪心,智商問題啊,當時就是沒想過二分,等比完,一聽說二分才想起來

二分可能的最大的可能高度,看能不能讓所有的高高度都超過mid,使用一個數組維護每一段的加減

#include 
#include 
#include 
using namespace std;
#define LL __int64
LL a[210000] , b[210000] , c[210000] ;
int main()
{
    LL n , m , w , d , x , i;

    scanf("%I64d %I64d %I64d", &n, &m, &w);
    for(i = 1 ; i <= n ; i++)
        scanf("%I64d", &a[i]);
    LL low = 0 , mid , top = 1e10 , ans = -1 ;
    while(low <= top)
    {
        mid = (low + top)/2 ;
        for(i = 1 ; i <= n ; i++)
            b[i] = max(mid - a[i],(LL)0);
        memset(c,0,sizeof(c));
        d = m ; x = 0 ;
        for(i = 1 ; i <= n ; i++)
        {
            x += c[i] ;
            b[i] -= x ;
            if(b[i] > 0)
            {
                LL k ;
                d -= b[i] ;
                if(d < 0)
                    break;

                x += b[i] ;
                c[i+w] -= b[i] ;
                b[i] = 0 ;
            }
        }
        if(d < 0)
            top = mid - 1 ;
        else
        {
            ans = mid ;
            low = mid + 1 ;
        }
    }
    printf("%I64d\n", ans);
}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved