CF457F.An easy problem about trees

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Pieguy and Piegirl are playing a game. They have a rooted binary tree, that has a property that each node is either a leaf or has exactly two children. Each leaf has a number associated with it.

On his/her turn a player can choose any two leafs that share their immediate parent, remove them, and associate either of their values with their parent, that now became a leaf (the player decides which of the two values to associate). The game ends when only one node (the one that was the root of the tree) is left.

Pieguy goes first, and his goal is to maximize the value that will be associated with the root when the game ends. Piegirl wants to minimize that value. Assuming that both players are playing optimally, what number will be associated with the root when the game ends?

输入格式

First line contains a single integer tt ( 1<=t<=1001<=t<=100 ) — number of test cases. Then tt test cases follow. Each test case begins with an empty line, followed by a line with a single integer nn ( 1<=n<=2501<=n<=250 ), followed by nn lines describing nn nodes of the tree. Each of those nn lines either contains a non-negative number aia_{i} , indicating a leaf node with value aia_{i} ( 0<=ai<=10000<=a_{i}<=1000 ) associated with it, or 1-1 followed by integers ll and rr , indicating a non-leaf node with children ll and rr ( 0<=l,r<=n10<=l,r<=n-1 ). Nodes are numbered from 00 to n1n-1 . The root is always node 00 .

输出格式

For each test case print one line with one integer on it — the number that will be associated with the root when the game ends.

输入输出样例

  • 输入#1

    4
    
    3
    -1 1 2
    10
    5
    
    5
    -1 1 2
    -1 3 4
    10
    5
    20
    
    7
    -1 1 2
    -1 3 4
    -1 5 6
    1
    2
    3
    4
    
    11
    -1 1 2
    -1 3 4
    -1 5 6
    -1 7 8
    15
    7
    -1 9 10
    7
    8
    9
    11
    

    输出#1

    10
    10
    4
    8
    
首页