CodeForces 460C - 2점 + 접두어 및 Present
2980 단어 codeforces
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 Input
Input
6 2 3
2 2 2 2 1 1
Output
2
Input
2 5 1
5 8
Output
9
Hint
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.
/*
pre i n , w
m ,
*/
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
const int inf = 1e9 + 1e6;
const int MAX = 1e6 + 10;
int pre[MAX], a[MAX];
int n, m, w, sum;
bool judge(int x)
{
int sum = 0;
memset(pre, 0, sizeof(pre));
for(int i = 1; i <= n; i++){
pre[i] += pre[i-1];
int day = x - (a[i] + pre[i]);
if(day > 0){
sum += day;
pre[i] += day;
pre[i+w] -= day;
}
if(sum > m) return false;
}
return true;
}
int main()
{
while(~scanf("%d%d%d", &n, &m, &w)){
for(int i = 1; i <= n ; i++){
scanf("%d", &a[i]);
}
int l = 1, r = inf;
int ans = l;
while(l <= r){
int mid = (l + r) >> 1;
if(judge(mid)){
l = mid + 1;
ans = mid;
}
else r = mid - 1;
}
printf("%d
", ans);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces Round #715 Div. 2C The Sports Festival: 구간 DP전형구간 DP의 초전형. 이하, 0-indexed. 입력을 정렬하여 어디서나 시작하고 최적으로 좌우로 계속 유지하면 좋다는 것을 알 수 있습니다. {2000})$의 주문이 된다. 우선, 입력을 소트하여 n개의 요소를 $...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.