-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathbinarytreemaximumpathsum.py
More file actions
36 lines (25 loc) · 1.07 KB
/
Copy pathbinarytreemaximumpathsum.py
File metadata and controls
36 lines (25 loc) · 1.07 KB
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
'''
A path in a binary tree is a sequence of nodes where each pair of adjacent nodes in the sequence has an edge connecting them. A node can only appear in the sequence at most once. Note that the path does not need to pass through the root.
The path sum of a path is the sum of the node's values in the path.
Given the root of a binary tree, return the maximum path sum of any non-empty path.
'''
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
answer = -float("inf")
def maxPathSum(self, root: Optional[TreeNode]) -> int:
self.dfs(root)
return self.answer
def dfs(self,node):
if node is None:
return 0
left = self.dfs(node.left)
right = self.dfs(node.right)
left = max(left,0)
right = max(right,0)
self.answer = max(self.answer,node.val+left+right)
return node.val + max(left,right)