-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path124.py
41 lines (34 loc) · 1.13 KB
/
124.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Definition for a binary tree node.
class TreeNode:
def __init__(self, x):
self.val = x
self.left = None
self.right = None
class Solution:
# @param {TreeNode} root
# @return {integer}
def maxPathSum(self, root):
if root == None:
return None
else:
the_max,current_max = self.getMax(root)
return current_max
def getMax(self, root):
if root == None:
return -float("inf"),-float("inf")
if root.left == None and root.right == None:
return root.val,root.val
left_max,left_cur_max = self.getMax(root.left)
right_max,right_cur_max = self.getMax(root.right)
lr_max = max(left_max,right_max)
current_max = max(root.val,root.val + lr_max, root.val + left_max +right_max ,left_cur_max,right_cur_max )
if lr_max <= 0:
the_max = root.val
else:
the_max = lr_max + root.val
return the_max,current_max
root = TreeNode(1)
leftnode = TreeNode(2)
root.left = leftnode
sol =Solution()
print sol.maxPathSum(root)