forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.py
27 lines (25 loc) · 820 Bytes
/
Solution.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
# 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:
def maxProduct(self, root: Optional[TreeNode]) -> int:
def sum(root: Optional[TreeNode]) -> int:
if root is None:
return 0
return root.val + sum(root.left) + sum(root.right)
def dfs(root: Optional[TreeNode]) -> int:
if root is None:
return 0
t = root.val + dfs(root.left) + dfs(root.right)
nonlocal ans, s
if t < s:
ans = max(ans, t * (s - t))
return t
mod = 10**9 + 7
s = sum(root)
ans = 0
dfs(root)
return ans % mod