#D10995. Attack the Moles
Attack the Moles
Attack the Moles
Training is indispensable for achieving good results at ICPC. Rabbit wants to win at ICPC, so he decided to practice today as well.
Today's training is to improve reflexes and memory by performing whac-a-mole many times. I want to hit the moles that come out one after another and get as many points as possible.
The places where moles may appear are lined up in a straight line, and the coordinates are determined by the distance from the reference point. As the rabbit continued his training for a while, he noticed that the place and time when the moles appeared were always the same. Rabbit decided to record all the information and analyze it with a computer.
In order to hit the mole, after moving the hand to the position where the mole appears, it is necessary to hit the mole exactly at the timing when the mole appears. If you hit the mole well, you can get points according to the mole. The action of hitting the mole can be done in an instant, but there is a limit to the speed at which the hand can be moved. Rabbits can use both their left and right hands to hit the moles. The left and right hands can be moved independently, but the left hand must always be in a position with smaller coordinates than the right hand. I would like to find out how many points can be obtained at the maximum under such conditions.
Input
NV X Left X Right X1 T1 P1 ... XN TN PN
N is the number of moles that come out, V is the maximum speed at which the hand can be moved, and XLeft and XRight are the coordinates of the initial positions of the left and right hands, respectively. Xi, Ti, and Pi are the coordinates of the position where the mole appears, the time from the start of the game to the appearance, and the points obtained when hitting, respectively.
1 ≤ N ≤ 3,000, 1 ≤ V ≤ 10,000, 1 ≤ XLeft <XRight ≤ 100,000, 1 ≤ X1 ≤ X2 ≤ ... ≤ XN ≤ 100,000, 1 ≤ Ti ≤ 100,000, 1 ≤ Pi ≤ 100,000. The same set as (Xi, Ti) does not appear multiple times.
Output
Output the maximum point at which the rabbit can be obtained on one line.
Examples
Input
3 10 150 250 100 20 123 201 10 67 202 10 45
Output
190
Input
1 7 20 90 55 5 73
Output
73
Input
10 2 1000 2000 400 300 1 600 200 1 700 800 1 700 500 1 900 600 1 1000 700 1 1300 900 1 1400 400 1 1500 1000 1 2000 100 1
Output
10
inputFormat
Input
NV X Left X Right X1 T1 P1 ... XN TN PN
N is the number of moles that come out, V is the maximum speed at which the hand can be moved, and XLeft and XRight are the coordinates of the initial positions of the left and right hands, respectively. Xi, Ti, and Pi are the coordinates of the position where the mole appears, the time from the start of the game to the appearance, and the points obtained when hitting, respectively.
1 ≤ N ≤ 3,000, 1 ≤ V ≤ 10,000, 1 ≤ XLeft <XRight ≤ 100,000, 1 ≤ X1 ≤ X2 ≤ ... ≤ XN ≤ 100,000, 1 ≤ Ti ≤ 100,000, 1 ≤ Pi ≤ 100,000. The same set as (Xi, Ti) does not appear multiple times.
outputFormat
Output
Output the maximum point at which the rabbit can be obtained on one line.
Examples
Input
3 10 150 250 100 20 123 201 10 67 202 10 45
Output
190
Input
1 7 20 90 55 5 73
Output
73
Input
10 2 1000 2000 400 300 1 600 200 1 700 800 1 700 500 1 900 600 1 1000 700 1 1300 900 1 1400 400 1 1500 1000 1 2000 100 1
Output
10
样例
1 7 20 90
55 5 73
73