题库练习 Balls of Steel
← 上一题 下一题 →

A13919 | Balls of Steel

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

You have $n$ distinct points $(x_1, y_1),\ldots,(x_n,y_n)$ on the plane and a non-negative integer parameter $k$ . Each point is a microscopic steel ball and $k$ is the attract power of a ball when it's charged. The attract power is the same for all balls.

In one operation, you can select a ball $i$ to charge it. Once charged, all balls with Manhattan distance at most $k$ from ball $i$ move to the position of ball $i$ . Many balls may have the same coordinate after an operation.

More formally, for all balls $j$ such that $|x_i - x_j| + |y_i - y_j| \le k$ , we assign $x_j:=x_i$ and $y_j:=y_i$ .

![](/uploads/acgo/image/9209e442f7a821e1_9dc75f958a19.jpeg) An example of an operation. After charging the ball in the center, two other balls move to its position. On the right side, the red dot in the center is the common position of those balls. Your task is to find the minimum number of operations to move all balls to the same position, or report that this is impossible.

输入格式

The first line contains a single integer $t$ ( $1 \le t \le 100$ ) — the number of test cases.

The first line of each test case contains two integers $n$ , $k$ ( $2 \le n \le 100$ , $0 \le k \le 10^6$ ) — the number of balls and the attract power of all balls, respectively.

The following $n$ lines describe the balls' coordinates. The $i$ -th of these lines contains two integers $x_i$ , $y_i$ ( $0 \le x_i, y_i \le 10^5$ ) — the coordinates of the $i$ -th ball.

It is guaranteed that all points are distinct.

输出格式

For each test case print a single integer — the minimum number of operations to move all balls to the same position, or $-1$ if it is impossible.

输入输出样例

输入 #1
3
3 2
0 0
3 3
1 1
3 3
6 7
8 8
6 9
4 1
0 0
0 1
0 2
0 3
输出 #1
-1
1
-1
C++ 编辑器
输入
输出