atcoder#DPX. Tower
Tower
Score : points
Problem Statement
There are blocks, numbered . For each (), Block has a weight of , a solidness of and a value of .
Taro has decided to build a tower by choosing some of the blocks and stacking them vertically in some order. Here, the tower must satisfy the following condition:
- For each Block contained in the tower, the sum of the weights of the blocks stacked above it is not greater than .
Find the maximum possible sum of the values of the blocks contained in the tower.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
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 are stacked in this order from top to bottom, this tower will satisfy the condition, with the total value of .
4
1 2 10
3 1 10
2 4 10
1 6 10
40
Blocks 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 in this order from top to bottom.