eolymp
bolt
Спробуйте наш новий інтерфейс для відправки розв'язків
Задачі

Jewel heist

Jewel heist

Ліміт часу 30 секунд
Ліміт використання пам'яті 256 MiB

Arsen Lupin, the master thief, aims to steal Evil Erwin’s jewels. Erwin has n jewels on display in his store. Every precious stone is of one of k distinct colors. The exposition is so large that we can treat it as the Euclidean plane with the jewels being distinct points. The display is secured by some quite expensive alarms.

Lupin has invented a device: a big, robotic hand that can grab some of the Erwin’s jewels without triggering any of the alarms. The hand can make one (and only one) grab, taking all the jewels lying on some horizontal segment or below it (see the picture). Lupin could easily take all the jewels this way, but he knows that the more he takes, the harder it will be to get rid of them. He decided that the safest way is to take a set of jewels that does not contain all the k colors.

Picture 1. The robotic hand grabs jewels 1, 2, 4, 5 and 6, carefully omitting the black ones

Compute how many jewels Lupin can steal with one grab of his device, without taking jewels in every color.

Вхідні дані

The first line of the input contains the number of test cases T. The descriptions of the test cases follow:

Each test case starts with two integers n (2n200000) and k (2kn) denoting the number of jewels and the number of distinct colors. The next n lines denote the jewels’ positions and colors. The j-th line contains three space-separated integers x_j, y_j, c_j (1x_j, y_j10^9, 1c_jk) meaning that the j-th jewel lies at coordinates (x_j, y_j) and has color c_j.

You may assume that there is at least one stone of every color at the exposition.

Вихідні дані

Print the answers to the test cases in the orderin which they appear in the input. For each test case print a single line containing the maximum possible number of stolen jewels.

Приклад

Вхідні дані #1
1
10 3
1 2 3
2 1 1
2 4 2
3 5 3
4 4 2
5 1 2
6 3 1
6 7 1
7 2 3
9 4 2
Вихідні дані #1
5
Джерело Central Europe Regional Contest 2012, Kraków, November 16-18, 2012