#P9352. [JOI 2023 Final] 训猫 / Cat Exercise
[JOI 2023 Final] 训猫 / Cat Exercise
题目描述
There are cat towers, numbered from to . The height of Tower () is . The heights of the towers are distinct integers between and , inclusive. There are adjacent pairs of towers. For each (), Tower and Tower are adjacent to each other. In the beginning, it is possible to travel from a tower to any other tower by repeating moves from towers to adjacent towers.
In the beginning, a cat stays in a tower of height .
Then we perform cat exercises. In cat exercises, we repeatedly choose a tower and put an obstacle on it. However, we cannot put an obstacle on a tower where we already put an obstacle on it. During the process, the following will happen.
- If the cat does not stay in the chosen tower, nothing will happen.
- If the cat stays in the chosen tower and there is an obstacle on every tower which is adjacent to the chosen tower, the cat exercises will finish.
- Otherwise, among the towers where the cat can arrive by repeating moves from towers to adjacent towers without obstacles, the cat will move to the highest tower except for the current tower by repeating moves from towers to adjacent towers. In this process, the cat takes the route where the number of moves from towers to adjacent towers becomes minimum.
Given information of the heights of the towers and pairs of adjacent towers, write a program which calculates the maximum possible sum of the number of moves of the cat from towers to adjacent towers if we put obstacles suitably.
输入格式
Read the following data from the standard input.
输出格式
Write one line to the standard output. The output should contain the maximum possible sum of the number of moves of the cat from towers to adjacent towers.
4
3 4 1 2
1 2
2 3
3 4
3
7
3 2 7 1 5 4 6
1 2
1 3
2 4
2 5
3 6
3 7
7
提示
Samples
Sample 1
If we perform the cat exercises in the following way, the cat moves 3 times in total.
- We put an obstacle on Tower 1. The cat does not move.
- We put an obstacle on Tower 2. The cat moves from Tower 2 to Tower 3. Then, the cat moves from Tower 3 to Tower 4.
- We put an obstacle on Tower 4. The cat moves from Tower 4 to Tower 3.
- We put an obstacle on Tower 3. Then the cat exercises finish.
Since there is no way to perform cat exercises where the cat moves more than or equal to 4 times from towers to adjacent towers, output 3.
This sample input satisfies the constraints of Subtasks 1, 2, 3, 4, 5, 7.
Sample 2
This sample input satisfies the constraints of Subtasks 4, 6, 7.
Constraints
- .
- ().
- ().
- ().
- In the beginning, it is possible to travel from a tower to any other tower by repeating moves from towers to adjacent towers.
- Given values are all integers.
Subtasks
- (7 points) (), .
- (7 points) (), .
- (7 points) (), .
- (10 points) .
- (20 points) ().
- (23 points) $A_i =\left\lfloor\frac{i+1}2\right\rfloor, B_i = i + 1$ (). Here is the largest integer which is smaller than or equal to .
- (26 points) No additional constraints.