CF898D.Alarm Clock
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Every evening Vitalya sets n alarm clocks to wake up tomorrow. Every alarm clock rings during exactly one minute and is characterized by one integer ai — number of minute after midnight in which it rings. Every alarm clock begins ringing at the beginning of the minute and rings during whole minute.
Vitalya will definitely wake up if during some m consecutive minutes at least k alarm clocks will begin ringing. Pay attention that Vitalya considers only alarm clocks which begin ringing during given period of time. He doesn't consider alarm clocks which started ringing before given period of time and continues ringing during given period of time.
Vitalya is so tired that he wants to sleep all day long and not to wake up. Find out minimal number of alarm clocks Vitalya should turn off to sleep all next day. Now all alarm clocks are turned on.
输入格式
First line contains three integers n , m and k ( 1<=k<=n<=2⋅105 , 1<=m<=106 ) — number of alarm clocks, and conditions of Vitalya's waking up.
Second line contains sequence of distinct integers a1,a2,...,an ( 1<=ai<=106 ) in which ai equals minute on which i -th alarm clock will ring. Numbers are given in arbitrary order. Vitalya lives in a Berland in which day lasts for 106 minutes.
输出格式
Output minimal number of alarm clocks that Vitalya should turn off to sleep all next day long.
输入输出样例
输入#1
3 3 2 3 5 1
输出#1
1
输入#2
5 10 3 12 8 18 25 1
输出#2
0
输入#3
7 7 2 7 3 4 1 6 5 2
输出#3
6
输入#4
2 2 2 1 3
输出#4
0
说明/提示
In first example Vitalya should turn off first alarm clock which rings at minute 3 .
In second example Vitalya shouldn't turn off any alarm clock because there are no interval of 10 consequence minutes in which 3 alarm clocks will ring.
In third example Vitalya should turn off any 6 alarm clocks.