#abc246g. G - Game on Tree 3
G - Game on Tree 3
Score : points
问题描述
存在一棵有 个顶点的根树,其中顶点 是根节点。对于每个 ,第 条边连接顶点 和顶点 。除了根节点外,每个顶点上都写有一个正整数:对于每个 ,顶点 上所写的整数是 。Takahashi 和 Aoki 将使用这棵根树和一枚棋子进行以下对抗游戏。
棋子从顶点 开始。在游戏结束前,他们重复以下步骤:
- 首先,Aoki 选择一个非根顶点,并将该顶点上的整数替换为 。
- 接下来,Takahashi 将棋子移动到当前所在顶点的一个(直接)子节点。
- 然后,如果棋子位于叶子节点上,则游戏结束。如果不是这种情况,Takahashi 可以选择立即结束游戏。
在游戏结束时,Takahashi 的得分将是棋子所在顶点上此时所写的整数。Takahashi 想要尽可能使自己的得分高,而 Aoki 则希望尽可能使得分低。请输出当双方都采取最优策略时,Takahashi 得到的分数。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
There is a rooted tree with vertices, Vertex being the root. For each , the -th edge connects Vertex and Vertex . Each vertex other than the root has a positive integer written on it: for each , the integer written on Vertex is . Takahashi and Aoki will use this rooted tree and a piece to play the following game against each other.
The piece starts on Vertex . Until the game ends, they repeat the following procedure.
- First, Aoki chooses a non-root vertex and replaces the integer written on that vertex with .
- Next, Takahashi moves the piece to a (direct) child of the vertex the piece is on.
- Then, the game ends if the piece is on a leaf. Even if that is not the case, Takahashi can choose to end the game immediately.
At the end of the game, Takahashi's score will be the integer written at that time on the vertex the piece is on. Takahashi wants to make his score as large as possible, while Aoki wants to make it as small as possible. Print the score Takahashi will get when both players play optimally for their respective purposes.
Constraints
- The given graph is a tree.
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1
7
2 4 6 5 6 10
1 2
1 3
2 4
2 5
5 6
5 7
Sample Output 1
5
Here is a possible progression of the game when both players play optimally.
- The piece starts on Vertex .
- Aoki changes the integer written on Vertex from to .
- Takahashi moves the piece from Vertex to Vertex .
- Aoki changes the integer written on Vertex from to .
- Takahashi moves the piece from Vertex to Vertex .
- Takahashi chooses to end the game.
At the end of the game, the piece is on Vertex , on which the integer is written at that time, so Takahashi's score will be .
Sample Input 2
30
29 27 79 27 30 4 93 89 44 88 70 75 96 3 78 39 97 12 53 62 32 38 84 49 93 53 26 13 25
13 15
14 22
17 24
12 3
4 3
5 8
26 15
3 2
2 9
4 25
4 13
2 10
28 15
6 4
2 5
19 9
2 7
2 14
23 30
17 2
7 16
21 13
13 23
13 20
1 2
6 18
27 6
21 29
11 8
Sample Output 2
70
update @ 2024/3/10 10:34:22