Hide

Problem D
Jewel Heist

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.

\includegraphics[width=0.5\textwidth ]{img-020.png}

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

Input

The first line of the input contains the number of test cases $T$, where $1 \le T \le 200$. The descriptions of the test cases follow:

Each test case starts with two integers $n$ ($2 \leq n \leq 200\, 000$) and $k$ ($2 \leq k \leq n$) 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$ ($1 \leq x_ j, y_ j \leq 10^9$, $1 \leq c_ j \leq k$) 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. The sum of $n$ across all $T$ test cases is at most $10^{6}$

Output

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

Sample Input 1 Sample Output 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
5

Please log in to submit a solution to this problem

Log in