시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB229940.909%

문제

Dave’s little son Maverick likes to play card games, but being only four years old, he always lose when playing with his older friends. Also, arranging cards in his hand is quite a problem to him. When Maverick gets his cards, he has to arrange them in groups so that all the cards in a group are of the same color. Next, he has to sort the cards in each group by their value – card with lowest value should be the leftmost in its group. Of course, he has to hold all the cards in his hand all the time.

He has to arrange his cards as quickly as possible, i.e. making as few moves as possible. A move consists of changing a position of one of his cards.

Write a program that will calculate the lowest number of moves needed to arrange cards.

입력

The first line of input file contains two integers C, number of colors (1 ≤ C ≤ 4), and N, number of cards of the same color (1 ≤ N ≤ 100), separated by a space character. 

Each of the next C*N lines contains a pair of two integers X and Y, 1 ≤ X ≤ C, 1 ≤ Y ≤ N, separated by a space character. Numbers in each of those lines determine a color (X) and a value (Y) of a card dealt to little Maverick. The order of lines corresponds to the order the cards were dealt to little Maverick.

No two lines describe the same card.

출력

The first and only line of output file should contain the lowest number of moves needed to arrange the cards as described above.

예제 입력 1

2 2
2 1
1 2
1 1
2 2

예제 출력 1

2

예제 입력 2

4 1
2 1
3 1
1 1
4 1

예제 출력 2

0

예제 입력 3

3 2
3 2
2 2
1 1
3 1
2 1
1 2

예제 출력 3

2