atcoder#DPQ. Flowers
Flowers
Score : points
Problem Statement
There are flowers arranged in a row. For each (), the height and the beauty of the -th flower from the left is and , respectively. Here, are all distinct.
Taro is pulling out some flowers so that the following condition is met:
- The heights of the remaining flowers are monotonically increasing from left to right.
Find the maximum possible sum of the beauties of the remaining flowers.
Constraints
- All values in input are integers.
- are all distinct.
Input
Input is given from Standard Input in the following format:
Output
Print the maximum possible sum of the beauties of the remaining flowers.
4
3 1 4 2
10 20 30 40
60
We should keep the second and fourth flowers from the left. Then, the heights would be from left to right, which is monotonically increasing, and the sum of the beauties would be .
1
1
10
10
The condition is met already at the beginning.
5
1 2 3 4 5
1000000000 1000000000 1000000000 1000000000 1000000000
5000000000
The answer may not fit into a 32-bit integer type.
9
4 2 5 8 3 6 1 7 9
6 8 8 4 6 3 5 7 5
31
We should keep the second, third, sixth, eighth and ninth flowers from the left.