Hide

Problem F
Assistant Ranking

The online retailer Amagoogsoftbook currently offers $N$ different so-called “home assistants”, which it wants to recommend to its customers. For this recommendation, they wish to rank all the assistants. The quality of this ranking is not very important – multiple assistants may even be assigned the same rank – but they wish to maximize the number of distinct ranks assigned, to lessen the decision fatigue of their customers.

To ensure that the ranking is not completely arbitrary, they have collected for each assistant $i$ two measurements $a_ i$ and $b_ i$ – the quality of the jokes the assistant can tell and how nice are the compliments the assistant is able to give (clearly these are the two most important aspects). These measurements are of course somewhat subjective, so we wish to ignore small differences in them. However, if for two given assistants $i$ and $j$ we have that $a_ i + K < a_ j$ or $b_ i + K < b_ j$, the ranking of assistant $j$ must be the same or higher than the ranking of assistant $i$. This rule may force two products to be given the same ranking, for example if an assistant $i$ gives much better puns than assistant $j$, while assistant $j$ gives the superior self-esteem boosts.

What is the maximum number of distinct ranks, taken over all possible rankings?

Input

The first line contains the integers $1 \le N \le 100\, 000$ and $0 \le K \le 10^9$ – the number of assistants and the measurement difference limit as described in the statement. The next line contains the $N$ integers $a_1, a_2, \dots , a_ N$. The next line contains the $N$ integers $b_1, b_2, \dots , b_ N$.

All measurements are between $0$ and $10^9$.

Output

Output a single integer: the maximum number of distinct ranks.

Sample Input 1 Sample Output 1
2 10
1 12
1 13
2
Sample Input 2 Sample Output 2
2 10
1 5
1 12
2
Sample Input 3 Sample Output 3
2 10
1 5
1 4
2
Sample Input 4 Sample Output 4
2 10
1 5
4 1
2
Sample Input 5 Sample Output 5
2 10
1 12
13 1
1

Please log in to submit a solution to this problem

Log in