#ABC175E. [ABC175E] Picking Goods

[ABC175E] Picking Goods

Score : 500500 points

Problem Statement

There are KK items placed on a grid of squares with RR rows and CC columns. Let (i,j)(i, j) denote the square at the ii-th row (1iR1 \leq i \leq R) and the jj-th column (1jC1 \leq j \leq C). The ii-th item is at (ri,ci)(r_i, c_i) and has the value viv_i.

Takahashi will begin at (1,1)(1, 1), the start, and get to (R,C)(R, C), the goal. When he is at (i,j)(i, j), he can move to (i+1,j)(i + 1, j) or (i,j+1)(i, j + 1) (but cannot move to a non-existent square).

He can pick up items on the squares he visits, including the start and the goal, but at most three for each row. It is allowed to ignore the item on a square he visits.

Find the maximum possible sum of the values of items he picks up.

Constraints

  • 1R,C30001 \leq R, C \leq 3000
  • 1Kmin(2×105,R×C)1 \leq K \leq \min(2 \times 10^5, R \times C)
  • 1riR1 \leq r_i \leq R
  • 1ciC1 \leq c_i \leq C
  • (ri,ci)(rj,cj)(ij)(r_i, c_i) \neq (r_j, c_j) (i \neq j)
  • 1vi1091 \leq v_i \leq 10^9
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

RR CC KK

r1r_1 c1c_1 v1v_1

r2r_2 c2c_2 v2v_2

::

rKr_K cKc_K vKv_K

Output

Print the maximum possible sum of the values of items Takahashi picks up.

2 2 3
1 1 3
2 1 4
1 2 5
8

He has two ways to get to the goal:

  • Visit (1,1)(1, 1), (1,2)(1, 2), and (2,2)(2, 2), in this order. In this case, the total value of the items he can pick up is 3+5=83 + 5 = 8.
  • Visit (1,1)(1, 1), (2,1)(2, 1), and (2,2)(2, 2), in this order. In this case, the total value of the items he can pick up is 3+4=73 + 4 = 7.

Thus, the maximum possible sum of the values of items he picks up is 88.

2 5 5
1 1 3
2 4 20
1 2 1
1 3 4
1 4 2
29

We have four items in the 11-st row. The optimal choices are as follows:

  • Visit (1,1)(1, 1) (1,2)(1, 2), (1,3)(1, 3), (1,4)(1, 4), (2,4)(2, 4), and (2,5)(2, 5), in this order, and pick up all items except the one on (1,2)(1, 2). Then, the total value of the items he picks up will be 3+4+2+20=293 + 4 + 2 + 20 = 29.
4 5 10
2 5 12
1 5 12
2 3 15
1 2 20
1 1 28
2 4 26
3 2 27
4 5 21
3 5 10
1 3 10
142