#ABC266H. [ABC266Ex] Snuke Panic (2D)

[ABC266Ex] Snuke Panic (2D)

Score : 600600 points

Problem Statement

Takahashi is trying to catch many Snuke.

There are some pits in a two-dimensional coordinate plane, connected to Snuke's nest.

Now, NN Snuke will appear from the pits. It is known that the ii-th Snuke will appear from the pit at coordinates (Xi,Yi)(X_i,Y_i) at time TiT_i, and its size is AiA_i.

Takahashi is at coordinates (0,0)(0,0) at time 00 and can do the following two kinds of moves.

  • Move at a speed of at most 11 in the xx-direction (positive or negative).
  • Move at a speed of at most 11 in the positive yy-direction.

Moving in the negative yy-direction is not allowed.

He can catch a Snuke appearing from a pit if and only if he is at the coordinates of that pit exactly when it appears. The time it takes to catch a Snuke is negligible.

Find the maximum sum of the sizes of Snuke that Takahashi can catch by moving optimally.

Constraints

  • 1N1051 \leq N \leq 10^5
  • 1Ti1091 \leq T_i \leq 10^9
  • 0Xi,Yi1090 \leq X_i,Y_i \leq 10^9
  • 1Ai1091 \leq A_i \leq 10^9
  • The triples (Ti,Xi,Yi)(T_i,X_i,Y_i) are distinct.
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN

T1T_1 X1X_1 Y1Y_1 A1A_1

T2T_2 X2X_2 Y2Y_2 A2A_2

\vdots

TNT_N XNX_N YNY_N ANA_N

Output

Print the answer as an integer.

3
1 0 0 100
3 2 1 10
5 3 1 1
101

The optimal strategy is as follows.

  • Wait at coordinates (0,0)(0,0) to catch the first Snuke at time 11.
  • Go to coordinates (3,1)(3,1) to catch the third Snuke at time 55.

It is impossible to catch both the first and second Snuke, so this is the best he can.

2
100 0 1 1
200 1 0 10
10

Moving in the negative yy-direction is not allowed, so he cannot catch the first Snuke and then the second.

10
797829355 595605750 185676190 353195922
913575467 388876063 395940406 533206504
810900084 201398242 159760440 87027328
889089200 220046203 85488350 325976483
277429832 161055688 73308100 940778720
927999455 429014248 477195779 174616807
673419335 415891345 81019893 286986530
989248231 147792453 417536200 219371588
909664305 22150727 414107912 317441890
988670052 140275628 468278658 67181740
1553741733