Road

4.2

35 votes
Dynamic Programming, 簡単-普通, Algorithms, 3 Dimensional, dp, Easy-Medium
Problem

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 |aiaj| 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(1n105) and k(0k50).

The second line contains n integers - a1,a2,a3,,an(0ai50) separated by space.

Output

Output the maximal number of points you can visit under the conditions mentioned above.

Time Limit: 2.5
Memory Limit: 256
Source Limit:
Explanation

Go from point 1 to point 2 using |12|=1 unit of time, and from 2 to 4 using |26|=4 units of time.

Editor Image

?