F. Card Pairing
time limit per test
2 seconds
memory limit per test
512 megabytes
input
standard input
output
standard output

There is a deck of $$$n$$$ cards, each card has one of $$$k$$$ types. You are given the sequence $$$a_1, a_2, \dots, a_n$$$ denoting the types of cards in the deck from top to bottom. Both $$$n$$$ and $$$k$$$ are even numbers.

You play a game with these cards. First, you draw $$$k$$$ topmost cards from the deck. Then, the following happens each turn of the game:

  • you choose exactly two cards from your hand and play them. If these cards have the same type, you earn a coin;
  • then, if the deck is not empty, you draw exactly two top cards from it;
  • then, if both your hand and your deck are empty, the game ends. Otherwise, the new turn begins.

You have to calculate the maximum number of coins you can earn during the game.

Input

The first line of the input contains two integers $$$n$$$ and $$$k$$$ ($$$2 \le k \le n \le 1000$$$, both $$$n$$$ and $$$k$$$ are even).

The second line of the input contains $$$n$$$ integers $$$a_1, a_2, \dots, a_n$$$ ($$$1 \le a_i \le k$$$).

Output

Print one integer — the maximum number of coins you can earn.

Examples
Input
4 2
1 2 1 2
Output
0
Input
8 2
2 1 2 2 1 2 1 2
Output
1
Input
4 4
1 2 1 2
Output
2
Input
6 4
3 2 3 1 2 1
Output
3
Input
6 4
3 2 3 3 2 1
Output
2
Input
18 6
5 6 1 1 6 5 4 1 5 1 1 6 2 6 2 2 6 3
Output
6
Input
8 4
1 2 3 4 4 3 1 2
Output
2
Input
8 4
1 2 3 4 4 3 3 2
Output
3