atcoder#ARC073D. [ARC073F] Many Moves
[ARC073F] Many Moves
Score : points
Problem Statement
There are squares in a row. The squares are numbered from left to right.
You have two pieces, initially placed on square and , respectively. You will be asked to process queries of the following kind, in the order received:
- Given an integer , move one of the two pieces of your choice to square .
Here, it takes you one second to move a piece one square. That is, the time it takes to move a piece from square to is seconds.
Your objective is to process all the queries in the shortest possible time.
You may only move the pieces in response to queries, and you may not move both pieces at the same time. Also, it is not allowed to rearrange the order in which queries are given. It is, however, allowed to have both pieces in the same square at the same time.
Constraints
Input
Input is given from Standard Input in the following format:
...
Output
Let the shortest possible time to process all the queries be seconds. Print .
8 3 1 8
3 5 1
7
All the queries can be processed in seven seconds, by:
- moving the piece at square to
- moving the piece at square to
- moving the piece at square to
9 2 1 9
5 1
4
The piece at square should be moved first.
9 2 1 9
5 9
4
The piece at square should be moved first.
11 16 8 1
1 1 5 1 11 4 5 2 5 3 3 3 5 5 6 7
21