题库练习 Match Points
← 上一题 下一题 →

A12663 | Match Points

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

题目描述

You are given a set of points $x_1$ , $x_2$ , ..., $x_n$ on the number line.

Two points $i$ and $j$ can be matched with each other if the following conditions hold:

- neither $i$ nor $j$ is matched with any other point;
- $|x_i - x_j| \ge z$ .

What is the maximum number of pairs of points you can match with each other?

输入格式

The first line contains two integers $n$ and $z$ ( $2 \le n \le 2 \cdot 10^5$ , $1 \le z \le 10^9$ ) — the number of points and the constraint on the distance between matched points, respectively.

The second line contains $n$ integers $x_1$ , $x_2$ , ..., $x_n$ ( $1 \le x_i \le 10^9$ ).

输出格式

Print one integer — the maximum number of pairs of points you can match with each other.

输入输出样例

输入 #1
4 2
1 3 3 7
输出 #1
2
输入 #2
5 5
10 9 5 8 7
输出 #2
1
C++ 编辑器
输入
输出