CF180E.Cubes

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Let's imagine that you're playing the following simple computer game. The screen displays nn lined-up cubes. Each cube is painted one of mm colors. You are allowed to delete not more than kk cubes (that do not necessarily go one after another). After that, the remaining cubes join together (so that the gaps are closed) and the system counts the score. The number of points you score equals to the length of the maximum sequence of cubes of the same color that follow consecutively. Write a program that determines the maximum possible number of points you can score.

Remember, you may delete no more than kk any cubes. It is allowed not to delete cubes at all.

输入格式

The first line contains three integers nn , mm and kk ( 1<=n<=2·10^{5},1<=m<=10^{5},0<=k<n ). The second line contains nn integers from 11 to mm — the numbers of cube colors. The numbers of colors are separated by single spaces.

输出格式

Print the maximum possible number of points you can score.

输入输出样例

  • 输入#1

    10 3 2
    1 2 1 1 3 2 1 1 2 2
    

    输出#1

    4
    
  • 输入#2

    10 2 2
    1 2 1 2 1 1 2 1 1 2
    

    输出#2

    5
    
  • 输入#3

    3 1 2
    1 1 1
    

    输出#3

    3
    

说明/提示

In the first sample you should delete the fifth and the sixth cubes.

In the second sample you should delete the fourth and the seventh cubes.

In the third sample you shouldn't delete any cubes.

首页