CSES - Taxis
  • Time limit: 1.00 s
  • Memory limit: 128 MB

Byteasar wants to take a taxi from the town Bytehole to the town Bytepit, which is m kilometres away from Bytehole. Exactly d kilometres along the way from Bytehole to Bytepit, there is a base of n taxis, numbered from 1 to n. The taxi no.i has enough fuel to drive exactly x_i kilometres.

Byteasar can change taxis at any point. All the taxis start at their base but need not return there. Your task is to determine whether Byteasar can be driven from Bytehole to Bytepit, and if so, what it the minimum number of taxis required for such a journey.

Input

The first line of the standard input holds three integers, m, d, and n, separated by single spaces. Those denote, respectively: the distance from Bytehole to Bytepit, the distance from Bytehole to the taxi base, and the number of taxis at the base. The second line of input contains n integers, x_1, x_2, \ldots, x_n, separated by single spaces. The number x_i denotes the maximum distance (in kilometres) that the i-th taxi can travel.

Output

Your program should print a single integer to the standard output: the minimum number of taxis Byteasar has to take to get from Bytehole to Bytepit. If getting there is impossible, your program should print the number 0.

Constraints

  • 1 \le d \le m \le 10^{18}
  • 1 \le n \le 5 \cdot 10^5
  • 1 \le x_i \le 10^{18}

Example

For the input data:

42 23 6
20 25 14 27 30 7

the correct result is:

4

Explanation of the example: Byteasar can take the taxis no. 4, 5, 1, and 2, in this order.

Task authors: Krzysztof Diks, Wojciech Rytter.