2172: 传递悄悄话

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:15 Solved:7

Description

给定一个二叉树,每个节点上站着一个人,节点数字表示父节点到该节点传递悄悄话需要花费的时间。 初始时,根节点所在位置的人有一个悄悄话想要传递给其他人,求二叉树所有节点上的人都接收到悄悄话花费的时间。

Input

0 9 20 -1 -1 15 7 -1 -1 -1 -1 3 2 注:-1表示空节点

Output

返回所有节点都接收到悄悄话花费的时间38

Sample Input Copy

0 9 20 -1 -1 15 7 -1 -1 -1 -1 3 2

Sample Output Copy

38

Source/Category