eolymp
bolt
Try our new interface for solving problems
Problems

Acowdemia

Acowdemia

Time limit 1 second
Memory limit 128 MiB

Bessie the cow has enrolled in a computer science PhD program, driven by her love of computer science and also the allure of one day becoming "Dr. Bessie". Having worked for some time on her academic research, she has now published n papers, and her i-th paper has accumulated c[i] citations from other papers in the research literature.

Bessie has heard that an academic's success can be measured by their h-index. The h-index is the largest number h such that the researcher has at least h papers each with at least h citations. For example, a researcher with 4 papers and respective citation counts (1, 100, 2, 3) has an h-index of 2, whereas if the citation counts were (1, 100, 3, 3) then the h-index would be 3.

To up her h-index, Bessie is planning to write up to k survey articles, each citing many of her past papers. However, due to page limits, she can only cite at most l papers in each survey. Of course, no paper may be cited multiple times in a single survey (but a paper may be cited in several surveys).

Help Bessie determine the maximum h-index she may achieve after writing these survey articles. Bessie is not allowed to cite a survey from one of her surveys.

Note that Bessie's research advisor should probably inform her at some point that writing a survey solely to increase one's h index is ethically dubious; other academics are not recommended to follow Bessie's example here.

Input data

The first line contains n (1n10^5), k (0k10^5) and l (0l10^5).

The second line contains n integers c[1], ..., c[n] (0c[i]10^5).

Output data

Print the maximum h-index on a single line.

Example 1

In this example, Bessie may write up to 4 survey articles, each citing at most 1 paper. If she cites each of her first and third articles twice, then her h-index becomes 3.

Example 2

In this second example, Bessie may write at most a single article. If Bessie cites any of her first, third, or fourth papers at least once, her h-index becomes 2.

Examples

Input example #1
4 4 1
1 100 1 1
Output example #1
3
Input example #2
4 1 4
1 100 1 1
Output example #2
2
Source 2021 USACO US Open, Silver