EKO - Eko


Lumberjack Mirko needs to chop down M 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 H (in metres), and the machine raises a giant sawblade to that height and cuts off all tree parts higher than H (of course, trees not higher than H meters remain intact). Mirko then takes the parts that were cut off. For example, if the tree row contains trees with heights of 20, 15, 10, and 17 metres, and Mirko raises his sawblade to 15 metres, the remaining tree heights after cutting will be 15, 15, 10, and 15 metres, respectively, while Mirko will take 5 metres off the first tree and 2 metres off the fourth tree (7 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 M metres of wood.

Input

The first line of input contains two space-separated positive integers, N (the number of trees, 1 ≤ N ≤ 1 000 000) and M (Mirko‟s required wood amount, 1 ≤ M ≤ 2 000 000 000).

The second line of input contains N space-separated positive integers less than 1 000 000 000, the heights of each tree (in metres). The sum of all heights will exceed M, thus Mirko will always be able to obtain the required amount of wood.

Output

The first and only line of output must contain the required height setting.

Example

Input:
4 7
20 15 10 17

Output:
15
Input:
5 20
4 42 40 26 46

Output:
36

hide comments
anurag_tangri: 2017-07-02 16:36:07

AC IN ONE GO :)

Sigma Kappa: 2017-07-02 14:51:00

OK, this is a nice binary search problem. Got Accepted with nested binary searches. Now, my question is (unrelated to here) why say DP tag features "237" problems, but when I click on it it only shows ~40-50 problems? Also, the sort feature doesn't work. Where should I write an email about these issues?

ajay_5097: 2017-05-29 11:27:56

Don't even dare to use "unsigned int" to save memory. Use long long Otherwise you'll get unsigned int overflow which will cause you WA. ;(

a[i] <= 10 ^ 9
N * a[i] = 10 ^ 6 * 10 ^ 9 = 10 ^15
while maximum range of unsigned int = 4 * 10 ^ 9

Last edit: 2017-05-29 11:28:38
code_aim: 2017-05-26 20:50:29

AC in one go!!

rishi_07: 2017-03-18 09:59:28

AC without Binary Search

Last edit: 2017-03-19 10:40:14
ayush_1997: 2017-03-14 20:54:47

use long long int :)

Bozidar: 2017-03-04 17:11:13

Pay attention to the most important part of the problem. Costed me several WA:
"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 M metres of wood."

cake_is_a_lie: 2017-03-04 02:19:05

You can solve it in O(N) with a special kind of "binary search". You can also solve it in O(N) with a sort and a linear search, but this won't be as effective.

Got 0.19 with O(N) and 0.03 by adding FAST I/O.

Last edit: 2017-03-04 04:19:50
sonudoo: 2017-01-29 19:31:06

Same logic. Accepted in C++. TLE in Python

vengatesh15: 2016-11-07 18:52:57

AC in one go :-)


Added by:ghorvat
Date:2012-07-02
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All
Resource:COCI 2011/2012