#ABC203F. [ABC203F] Weed

[ABC203F] Weed

Score : 600600 points

Problem Statement

Takahashi's and Aoki's garden is covered with NN weeds, called Weed 11, Weed 22, \ldots, Weed NN. The height of Weed ii is AiA_i. Takahashi and Aoki have decided to pull these weeds, as follows:

  • First, Aoki will choose at most KK weeds and pull them.
  • Then, Takahashi will repeat the following operation until all weeds are pulled.- Let HH be the height of the tallest remaining weeds. Pull all weeds with heights above H2\frac{H}{2} at once.

Aoki wants to minimize the number of operations done by Takahashi. Also, he wants to minimize it by pulling the minimum number of weeds needed. Find the number of operations done by Takahashi and the number of weeds Aoki pulls in this case.

Constraints

  • 1N2×1051 \leq N \leq 2\times 10^5
  • 0KN0 \leq K \leq N
  • 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 \ldots ANA_N

Output

Print the number of operations Takahashi will do and the number of weeds Aoki will pull, in this order, with a space in between.

4 1
2 3 4 9
2 1

For example, assume that Aoki chooses Weed 44, with height 99, and pulls it. Then, the tallest remaining weed is Weed 33, with height 44. We have 42=2\frac{4}{2}=2, and Takahashi will pull Weed 22 and 33 in the first operation, since 2<32<3 and 2<42<4. Then, he will pull Weed 11 in the second operation, completing his work in two operations. On the other hand, he will not complete his work in one operation, no matter which one weed Aoki chooses.

Also, if Aoki pulls no weed, Takahashi will have to do three operations, so Aoki must pull at least one weed to minimize the number of operations done by Takahashi.

3 3
2 3 5
0 3

If Aoki pulls all weeds, Takahashi has to do zero operations, which is obviously the smallest number possible.

9 8
137 55 56 60 27 28 133 56 55
1 4