시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB211100.000%

문제

An infinite number of people are standing in a line, which extends infinitely to both left and right. P different people are selected to get one French fry each. Since this is somewhat unfair, everybody simultaneously takes all their French fries and split them in two, giving half to the person on the left and half to the person on the right. Then they repeat this, for T − 1 more time steps. If a person after these T time steps has at least L French fries (where L is not necessarily an integer), they will be full. How many people will become full?

입력

The first line of input contains the two integers P and T (1 ≤ P ≤ 3 · 105, 1 ≤ T ≤ 5 · 107), and the floating point number L (10−4 ≤ L ≤ 10). The second line of input contains P distinct integers: the indices of the people who initially get French fries. All indices of people will be between 0 and 107.

출력

Print one integer: the number of people who will end up with at least L fries.

An answer X will be treated as correct if it is between the number of people who get at least 0.8L fries, and the number who get at least 1.2L fries.

서브태스크 1 (10점)

  • P ≤ 100
  • T ≤ 100
  • all initial indices are between 0 and 100

서브태스크 2 (14점)

  • P ≤ 500
  • T ≤ 100

서브태스크 3 (17점)

  • P ≤ 3 · 105
  • T ≤ 100

서브태스크 4 (13점)

  • P ≤ 100
  • T ≤ 105

서브태스크 5 (20점)

  • P ≤ 500
  • T ≤ 5 · 107

서브태스크 6 (26점)

  • P ≤ 3 · 105
  • T ≤ 5 · 107

예제 입력 1

2 1 0.74
0 2

예제 출력 1

1

예제 입력 2

4 100 0.1
1 2 3 11

예제 출력 2

13

힌트

In the first example, the people at indices 0 and 2 initially have one French fry each. After they split these into two and give half to their neighbors, the people at indices −1 and 3 will have 0.5 fries, while the person at index 1 will have 1. The limit for becoming full is 0.74 French fries; thus, person 1 is the only one who gets full.

In the second example, the answer 13 is accurate, but any output between 12 and 15 would be accepted