100 #ABC210C. [ABC210C] Colorful Candies

[ABC210C] Colorful Candies

Score : 300300 points

Problem Statement

There are NN candies arranged in a row from left to right. Each of these candies has one color that is one of the 10910^9 colors called Color 11, Color 22, \ldots, and Color 10910^9. For each i=1,2,,Ni = 1, 2, \ldots, N, the color of the ii-th candy from the left is Color cic_i.

From this row, Takahashi can choose KK consecutive candies and get them. That is, he can choose an integer ii such that 1iNK+11 \leq i \leq N-K+1 and get the ii-th, (i+1)(i+1)-th, (i+2)(i+2)-th, \ldots, (i+K1)(i+K-1)-th candy from the left.

Takahashi likes to eat colorful candies, so the more variety of colors his candies have, the happier he will be. Print the maximum possible number of distinct colors in candies he gets.

Constraints

  • 1KN3×1051 \leq K \leq N \leq 3 \times 10^5
  • 1ci1091 \leq c_i \leq 10^9
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN KK

c1c_1 c2c_2 \ldots cNc_N

Output

Print the maximum possible number of distinct colors in candies Takahashi gets.

7 3
1 2 1 2 3 3 1
3

If Takahashi gets the 33-rd through 55-th candies, they will have 33 distinct colors, which is the maximum possible number.

5 5
4 4 4 4 4
1

Takahashi can get all of these candies, but they are in a single color.

10 6
304621362 506696497 304621362 506696497 834022578 304621362 414720753 304621362 304621362 414720753
4