#AGC011A. [AGC011A] Airport Bus

[AGC011A] Airport Bus

Score : 300300 points

Problem Statement

Every day, NN passengers arrive at Takahashi Airport. The ii-th passenger arrives at time TiT_i.

Every passenger arrived at Takahashi airport travels to the city by bus. Each bus can accommodate up to CC passengers. Naturally, a passenger cannot take a bus that departs earlier than the airplane arrives at the airport. Also, a passenger will get angry if he/she is still unable to take a bus KK units of time after the arrival of the airplane. For that reason, it is necessary to arrange buses so that the ii-th passenger can take a bus departing at time between TiT_i and Ti+KT_i + K (inclusive).

When setting the departure times for buses under this condition, find the minimum required number of buses. Here, the departure time for each bus does not need to be an integer, and there may be multiple buses that depart at the same time.

Constraints

  • 2N1000002 \leq N \leq 100000
  • 1C1091 \leq C \leq 10^9
  • 1K1091 \leq K \leq 10^9
  • 1Ti1091 \leq T_i \leq 10^9
  • CC, KK and TiT_i are integers.

Input

The input is given from Standard Input in the following format:

NN CC KK

T1T_1

T2T_2

::

TNT_N

Output

Print the minimum required number of buses.

5 3 5
1
2
3
6
12
3

For example, the following three buses are enough:

  • A bus departing at time 4.54.5, that carries the passengers arriving at time 22 and 33.
  • A bus departing at time 66, that carries the passengers arriving at time 11 and 66.
  • A bus departing at time 1212, that carries the passenger arriving at time 1212.
6 3 3
7
6
2
8
10
6
3