luogu#P6984. [NEERC2015] Landscape Improved
[NEERC2015] Landscape Improved
题目描述
Louis Le Roi-Univers has ordered to improve the landscape that is seen from the royal palace. His Majesty prefers to see a high mountain.
The Chief Landscape Manager is going to raise a mountain for Louis. He represents a landscape as a flat picture on a grid of unit squares. Some of the squares are already filled with rock, while others are empty. This greatly simplifies the design. Unit squares are small enough, and the landscape seems to be smooth from the royal palace.
The Chief Landscape Manager has a plan of the landscape -- the heights of all rock-filled columns for each unit of width. He is going to add at most square units of stones atop of the existing landscape to make a mountain with as high peak as possible. Unfortunately, piles of stones are quite unstable. A unit square of stones may be placed only exactly on top of the other filled square of stones or rock, moreover the squares immediately to the bottom-left and to bottom-right of it should be already filled.
Existing landscape
Improved landscape
Your task is to help The Chief Landscape Manager to determine the maximum height of the highest mountain he can build.
输入格式
The first line of the input file contains two integers -- the width of the existing landscape and -- the maximum number of squares of stones to add
Each of the following lines contains a single integer -- the height of the existing landscape column
输出格式
The output file shall contain the single integer -- the maximum possible landscape height after at most unit squares of stones are added in a stable way.
题目大意
给定序列 和常数 。
,仅当 且 时可使 变为 ,且操作次数不能多于 次。
求所有合法方案下, 的最大值。
$1\leq w\leq 10^5,1\leq h_i \leq 10^9,1\leq n\leq 10^{18}.$
8 4
3
4
2
1
3
3
2
4
5
3 100
3
3
3
4
提示
Time limit: 1 s, Memory limit: 256 MB.