WC '16 Contest 2 J2 - EHC

View as PDF

Submit solution


Points: 7 (partial)
Time limit: 1.4s
Memory limit: 64M

Author:
Problem types
Woburn Challenge 2016-17 Round 2 - Junior Division

"Please state the nature of the culinary emergency!" exclaims the Enterprise's EHC (Emergency Holographic Chef), having just been activated. It seems that Lieutenant Commander Le Ferge is extremely hungry, and will need to be brought a hot meal, stat!

The EHC is currently in the mess hall, and will need to make his way to the bridge to save Le Ferge. The bridge is at the end of a hallway, which is M (1M109) metres long. There's just one complication - being a hologram, the EHC must remain within a distance of R (1R109) metres (inclusive) of a holographic emitter at all times.

Fortunately, there's a holographic emitter installed right at the entrance to the mess hall, and there are N (0N200000) other emitters located at various points along the hallway. The ith of these emitters is Ei (1Ei<M) metres away from the mess hall (and thus, MEi metres away from the bridge). No two emitters are in the same location.

The existing set of N+1 holographic emitters may not provide enough unbroken coverage for the EHC to be able to successfully walk from the mess hall to the bridge. If that's the case, some more emitters may need to be installed along the hallway, at any chosen locations.

Le Ferge is very, very hungry, and only the EHC is qualified enough to feed him! Given that time is of the essence, what's the minimum number of additional holographic emitters which must be installed in order for every point in the hallway to be at most R metres away from at least one emitter?

In test cases worth 8/20 of the points, N2000 and M2000.
In test cases worth another 8/20 of the points, N2000.

Input Specification

The first line of input consists of three space-separated integers N, M, and R.
N lines follow, with the ith of these lines consisting of a single integer Ei (for i=1N).

Output Specification

Output a single integer - the minimum number of additional emitters required.

Sample Input

Copy
2 100 15
85
61

Sample Output

Copy
2

Sample Explanation

One possibility is to place two holographic emitters 30 metres and 40 metres away from the mess hall. If only the first of these emitters is added, then the EHC won't be able to traverse the section of the hallway between 45 and 46 metres from the mess hall (exclusive).


Comments

There are no comments at the moment.