#ABC174E. [ABC174E] Logs

[ABC174E] Logs

Score : 500500 points

Problem Statement

We have NN logs of lengths A1,A2,ANA_1,A_2,\cdots A_N.

We can cut these logs at most KK times in total. When a log of length LL is cut at a point whose distance from an end of the log is tt (0,itbecomestwologsoflengths(0, it becomes two logs of lengths tand and L-t$.

Find the shortest possible length of the longest log after at most KK cuts, and print it after rounding up to an integer.

Constraints

  • 1N2×1051 \leq N \leq 2 \times 10^5
  • 0K1090 \leq K \leq 10^9
  • 1Ai1091 \leq A_i \leq 10^9
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN KK

A1A_1 A2A_2 \cdots ANA_N

Output

Print an integer representing the answer.

2 3
7 9
4
  • First, we will cut the log of length 77 at a point whose distance from an end of the log is 3.53.5, resulting in two logs of length 3.53.5 each.
  • Next, we will cut the log of length 99 at a point whose distance from an end of the log is 33, resulting in two logs of length 33 and 66.
  • Lastly, we will cut the log of length 66 at a point whose distance from an end of the log is 3.33.3, resulting in two logs of length 3.33.3 and 2.72.7.

In this case, the longest length of a log will be 3.53.5, which is the shortest possible result. After rounding up to an integer, the output should be 44.

3 0
3 4 5
5
10 10
158260522 877914575 602436426 24979445 861648772 623690081 433933447 476190629 262703497 211047202
292638192