We have an array a of size n and a number k. There are n points on the plane. We can travel from point i to point j if and only if i<j and it takes |ai−aj| units of time to move. We should find the maximal number of points (including start point) we can visit in one journey if we start from point 1 (you can not start from any other point except point 1)and end at any arbitrary point and we will use at most k units of time in this journey.
Input
The first line contains 2 integers - n(1≤n≤105) and k(0≤k≤50).
The second line contains n integers - a1,a2,a3,…,an(0≤ai≤50) separated by space.
Output
Output the maximal number of points you can visit under the conditions mentioned above.
Go from point 1 to point 2 using |1−2|=1 unit of time, and from 2 to 4 using |2−6|=4 units of time.