.Zzumbong

[leetCode/JS] 1339. Maximum Product of Splitted Binary Tree 본문

coding test/leetCode

[leetCode/JS] 1339. Maximum Product of Splitted Binary Tree

쭘봉 2022. 12. 10. 15:30

난이도 [ 🤔 ] Medium

문제 설명

Given the root of a binary tree, split the binary tree into two subtrees by removing one edge such that the product of the sums of the subtrees is maximized.

Return the maximum product of the sums of the two subtrees. Since the answer may be too large,

return it modulo 109 + 7.

Note that you need to maximize the answer before taking the mod and not after taking it.

 

문제가 좀 복잡한데, 요약하자면
하나의 이진트리를 2개로 나눠서 각각 트리의 합계의 곱이 가장 큰 숫자를 리턴하는 것이다.

 

 

입출력 예

Example 1:

Input: root = [1,2,3,4,5,6]
Output: 110
Explanation: Remove the red edge and get 2 binary trees with sum 11 and 10. Their product is 110 (11*10)

 

 

Example 2:

 

Input: root = [1,null,2,3,4,null,null,5,6]
Output: 90
Explanation: Remove the red edge and get 2 binary trees with sum 15 and 6.Their product is 90 (15*6)

 

Constraints

  • The number of nodes in the tree is in the range [2, 5 * 104].
  • 1 <= Node.val <= 104

 

 


 

 

내 솔루션

  • 예제1로 설명하자면 [1, 2, 3, 4, 5, 6]를 DFS로 돌려서 [4, 5, 2, 6, 3, 1] 순서로 서치한다.
  • 하위 노드부터 돌면서 자를 수 있는 경우의 수를 잘라서 sums에 저장하는 것이다
  • sums = [4, 5, 11, 6, 9, 21]로 잘라진 노드의 합계를 sums에 저장한다.

이런 느낌으로 잘라서 잘린 트리의 sum을 저장한다.

  • 마지막으로 sum은 저장된(잘린) 트리의 합계와 나머지 (total-sum)을 곱해서 가장 큰 수를 return하면 끝난다.
var maxProduct = function(root) {
  const sums = [];
  const dfs = (node) => {
    if(!node) return 0;
    const sum = node.val + dfs(node.left) + dfs(node.right);
    sums.push(sum);
    return sum;
  }
  const total = dfs(root);
  return Math.max(...sums.map(s => (total - s) * s)) % (1e9 + 7);
};

 

감상평

  • DFS 파티구나 생소한 문제였다. 재미있어
Comments