1343. Maximum Product of Splitted Binary Tree
https://leetcode.com/problems/maximum-product-of-splitted-binary-tree/
Last updated
Was this helpful?
https://leetcode.com/problems/maximum-product-of-splitted-binary-tree/
Last updated
Was this helpful?
Given a binary tree root
. Split the binary tree into two subtrees by removing 1 edge such that the product of the sums of the subtrees are maximized.
Since the answer may be too large, return it modulo 10^9 + 7.
Example 1:
Example 2:
Example 3:
Example 4:
二叉树一条边能把树分成两棵,问能任意去掉一条边,两棵树各自的和相乘最大会是多少。遍历统计出整棵树的和,再遍历每个结点统计出该结点的子树和是多少,再看当前子树的和 * (sum - 当前子树和)是否是最大解。也可以用集合统计出所有可能的和,再分别看它们所形成的乘积最大是多少。