atcoder#DPB. Frog 2
Frog 2
Score : points
Problem Statement
There are stones, numbered . For each (), the height of Stone is .
There is a frog who is initially on Stone . He will repeat the following action some number of times to reach Stone :
- If the frog is currently on Stone , jump to one of the following: Stone . Here, a cost of is incurred, where is the stone to land on.
Find the minimum possible total cost incurred before the frog reaches Stone .
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the minimum possible total cost incurred.
5 3
10 30 40 50 20
30
If we follow the path → → , the total cost incurred would be .
3 1
10 20 10
20
If we follow the path → → , the total cost incurred would be .
2 100
10 10
0
If we follow the path → , the total cost incurred would be .
10 4
40 10 20 70 80 10 20 70 80 60
40
If we follow the path → → → , the total cost incurred would be .