Lumberjack Mirko needs to chop down metres of wood. It is an easy job for him since he has a nifty new woodcutting machine that can take down forests like wildfire. However, Mirko is only allowed to cut a single row of trees.
Mirko's machine works as follows: Mirko sets a height parameter (in metres), and the machine raises a giant sawblade to that height and cuts off all tree parts higher than (of course, trees not higher than metres remain intact). Mirko then takes the parts that were cut off. For example, if the tree row contains trees with heights of , , , and metres, and Mirko raises his sawblade to metres, the remaining tree heights after cutting will be , , , and metres, respectively, while Mirko will take metres off the first tree and metres off the fourth tree ( metres of wood in total).
Mirko is ecologically minded, so he doesn't want to cut off more wood than necessary. That's why he wants to set his sawblade as high as possible. Help Mirko find the maximum integer height of the sawblade that still allows him to cut off at least metres of wood.
Input Specification
The first line of input contains two space-separated positive integers, (the number of trees, ) and (Mirko's required wood amount, ).
The second line of input contains space-separated positive integers less than , the heights of each tree (in metres). The sum of all heights will exceed , thus Mirko will always be able to obtain the required amount of wood.
Output Specification
The first and only line of output must contain the required height setting.
Sample Input 1
4 7
20 15 10 17
Sample Output 1
15
Sample Input 2
5 20
4 42 40 26 46
Sample Output 2
36
Comments
For those who struggle, don't try to search every single height, try using something like binary search - it's way faster.
i cannot solve this in c#
pls up the mem limit
pls help
long long int