#D3184. Voting Judges
Voting Judges
Voting Judges
N problems are proposed for an upcoming contest. Problem i has an initial integer score of A_i points.
M judges are about to vote for problems they like. Each judge will choose exactly V problems, independently from the other judges, and increase the score of each chosen problem by 1.
After all M judges cast their vote, the problems will be sorted in non-increasing order of score, and the first P problems will be chosen for the problemset. Problems with the same score can be ordered arbitrarily, this order is decided by the chief judge.
How many problems out of the given N have a chance to be chosen for the problemset?
Constraints
- 2 \le N \le 10^5
- 1 \le M \le 10^9
- 1 \le V \le N - 1
- 1 \le P \le N - 1
- 0 \le A_i \le 10^9
Input
Input is given from Standard Input in the following format:
N M V P A_1 A_2 ... A_N
Output
Print the number of problems that have a chance to be chosen for the problemset.
Examples
Input
6 1 2 2 2 1 1 3 0 2
Output
5
Input
6 1 5 2 2 1 1 3 0 2
Output
3
Input
10 4 8 5 7 2 3 6 1 6 5 4 6 5
Output
8
inputFormat
Input
Input is given from Standard Input in the following format:
N M V P A_1 A_2 ... A_N
outputFormat
Output
Print the number of problems that have a chance to be chosen for the problemset.
Examples
Input
6 1 2 2 2 1 1 3 0 2
Output
5
Input
6 1 5 2 2 1 1 3 0 2
Output
3
Input
10 4 8 5 7 2 3 6 1 6 5 4 6 5
Output
8
样例
6 1 2 2
2 1 1 3 0 2
5