#DPX. Tower

Tower

Score : 100100 points

Problem Statement

There are NN blocks, numbered 1,2,,N1, 2, \ldots, N. For each ii (1iN1 \leq i \leq N), Block ii has a weight of wiw_i, a solidness of sis_i and a value of viv_i.

Taro has decided to build a tower by choosing some of the NN blocks and stacking them vertically in some order. Here, the tower must satisfy the following condition:

  • For each Block ii contained in the tower, the sum of the weights of the blocks stacked above it is not greater than sis_i.

Find the maximum possible sum of the values of the blocks contained in the tower.

Constraints

  • All values in input are integers.
  • 1N1031 \leq N \leq 10^3
  • 1wi,si1041 \leq w_i, s_i \leq 10^4
  • 1vi1091 \leq v_i \leq 10^9

Input

Input is given from Standard Input in the following format:

NN

w1w_1 s1s_1 v1v_1

w2w_2 s2s_2 v2v_2

::

wNw_N sNs_N vNv_N

Output

Print the maximum possible sum of the values of the blocks contained in the tower.

3
2 2 20
2 1 30
3 1 40
50

If Blocks 2,12, 1 are stacked in this order from top to bottom, this tower will satisfy the condition, with the total value of 30+20=5030 + 20 = 50.

4
1 2 10
3 1 10
2 4 10
1 6 10
40

Blocks 1,2,3,41, 2, 3, 4 should be stacked in this order from top to bottom.

5
1 10000 1000000000
1 10000 1000000000
1 10000 1000000000
1 10000 1000000000
1 10000 1000000000
5000000000

The answer may not fit into a 32-bit integer type.

8
9 5 7
6 2 7
5 7 3
7 8 8
1 9 6
3 3 3
4 1 7
4 5 5
22

We should, for example, stack Blocks 5,6,8,45, 6, 8, 4 in this order from top to bottom.