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
pratyush2331: 2022-05-25 20:23:07

<snip>
[Simes]: Read the footer - Don't post source code here.

Last edit: 2022-05-31 18:46:08
dante__13: 2022-05-19 13:57:33

Getting TLE at case 9 using CPP. Have done Aggressive cow and painter's partition at one go. Can not understand where i am making the mistake. Need HELP

jshreyash: 2022-05-08 16:39:07

Anyone able to solve using Python3.Getting Time limit exceeded at 9 test case.

deshiyan: 2022-03-31 12:34:26

I'm using Python3.7 and I'm not able to pass 9th TC, any fix in Python?

rohan70970: 2022-03-01 07:52:50

for those who are getting WA on 9th test case use unsigned long long instead of long long

ritwik4690: 2022-02-18 07:40:01

Was stuck on 9th test case for days! Finally AC. Even after using long long I was getting WA on 9th test case. There was a minute mistake in my binary search implementation. For everyone else stuck on the same, don't give up... try finding the bug using different test cases.

tejas07_psk: 2022-02-17 17:29:25

can this even get AC in python3

mayank_dem: 2022-02-11 14:29:21

TO ALL PEOPLE WHO ARE TRYING THIS PROGRAM IN #JAVA compiler is slow and it will give time limit exceeded so dont worry. same logic works in c++.

mathuramol: 2022-01-21 08:19:14

AC in one go...:)))
do book allocation problem first

princep: 2021-12-26 21:19:17

@mango_kulfi hah EKO EKO

Last edit: 2021-12-26 21:19:37

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