The derby between Milan and Inter is happening soon, and you have been chosen as the assistant referee for the match, also known as linesman. Your task is to move along the touch-line, namely the side of the field, always looking very carefully at the match to check for offside positions and other offences.
Football is an extremely serious matter in Italy, and thus it is fundamental that you keep very close track of the ball for as much time as possible. This means that you want to maximise the number of kicks which you monitor closely. You are able to monitor closely a kick if, when it happens, you are in the position along the touch-line with minimum distance from the place where the kick happens.
Fortunately, expert analysts have been able to accurately predict all the kicks which will occur during the game. That is, you have been given two lists of integers, t_1, …, t_n and a_1, …, a_n, indicating that t_i seconds after the beginning of the match the ball will be kicked and you can monitor closely such kick if you are at the position a_i along the touch-line.
At the beginning of the game you start at position 0 and the maximum speed at which you can walk along the touch-line is v units per second (i.e., you can change your position by at most v each second). What is the maximum number of kicks that you can monitor closely?
The first line contains two integers n and v (1≤n≤2⋅105, 1≤v≤106) — the number of kicks that will take place and your maximum speed. The second line contains n integers t_1, …, t_n (1≤t_i≤109) — the times of the kicks in the match. The sequence of times is guaranteed to be strictly increasing, i.e., t_1<t_2<⋯<t_n. The third line contains n integers a_1, …, a_n (−109≤a_i≤109) — the positions along the touch-line where you have to be to monitor closely each kick.
Print the maximum number of kicks that you can monitor closely.