#abc273f. F - Hammer 2
F - Hammer 2
Score : points
问题描述
Takahashi 在数轴的原点处。他想要到达坐标为 的目标位置。
同时,在数轴上有 道墙和 把锤子。
- 在坐标 处分别有类型为 的墙壁。
- 起初,Takahashi 无法越过这些墙壁。
- 在坐标 处分别有类型为 的锤子。
- 当他到达带有锤子的坐标时,他会获得这把锤子。
- 类型为 的锤子专门用于破坏类型为 的墙壁。在他获得类型为 的锤子后,可以破坏类型为 的墙壁并越过它。
判断他是否能够到达目标位置。如果可以,找出他需要行走的最短距离。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
Takahashi is at the origin of a number line. Takahashi wants to reach the goal at coordinate .
Also, there are walls and hammers on the number line.
- At coordinates are walls of types , respectively.
- Initially, Takahashi cannot get over the walls.
- At coordinates are hammers of types , respectively.
- When he arrives at a coordinate with a hammer, he obtains the hammer.
- The hammer of type is dedicated to destroying the wall of type . After he obtains the hammer of type , he can destroy the wall of type and get over it.
Determine if he can reach the goal. If he can, find the minimum distance he travels.
Constraints
- All values in the input are integers.
- The coordinates and are distinct.
Input
The input is given from Standard Input in the following format:
Output
If Takahashi can reach the goal, print the minimum possible distance he travels as an integer.
Otherwise, print -1
.
Sample Input 1
3 10
-2 8 -5
5 -10 3
Sample Output 1
40
Takahashi can reach the goal by traveling a distance of as follows, which is the minimum possible:
- He starts at coordinate .
- He moves to coordinate to obtain the hammer of type .
- He moves to coordinate to obtain the hammer of type .
- He moves to coordinate to destroy the wall of type .
- He moves to coordinate to destroy the wall of type .
- He moves to coordinate to obtain the hammer of type .
- He moves to coordinate to destroy the wall of type .
- He moves to coordinate , which is the goal.
Sample Input 2
5 -1
10 -20 30 -40 50
-10 20 -30 40 -50
Sample Output 2
1
It may not be required that he obtains a hammer or destroys a wall to reach the goal.
Sample Input 3
1 100
30
60
Sample Output 3
-1
Takahashi cannot obtain the hammer of type , and neither can he reach the goal.
Sample Input 4
4 865942261
703164879 -531670946 -874856231 -700164975
-941120316 599462305 -649785130 665402307
Sample Output 4
4078987507
update @ 2024/3/10 11:30:57