Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 맛집
- 잠실새내
- 알고리즘테스트
- 코테
- 송리단
- 하스스톤
- 토이프로젝트
- 메탈퍼즐
- 노노그램
- 눈알빠지겠네
- 미앤아이
- 발더스게이트
- 천등
- 바질토마토뭐시기
- 취미
- 코딩테스트
- 메일우유
- 발더스3
- DIY
- 발더스모드
- javascript
- 3d퍼즐
- 밥먹고
- 버즈2프로
- 누룽지소금빵
- 게임
- LeetCode
- 나쫌
- 서울제빵소
- 뜨아거
Archives
- Today
- Total
.Zzumbong
[leetCode/JS] 124. Binary Tree Maximum Path Sum 본문
난이도 [ 👿 ] Hard
문제 설명
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.
이진 트리의 연속된 경로중에 최대 합산을 반환하면 된다. 루트를 통과할 필요가 없다.
입출력 예
Example 1:
Input: root = [1,2,3]
Output: 6
Explanation: The optimal path is 2 -> 1 -> 3 with a path sum of 2 + 1 + 3 = 6.
Example 2:
Input: root = [-10,9,20,null,null,15,7]
Output: 42
Explanation: The optimal path is 15 -> 20 -> 7 with a path sum of 15 + 20 + 7 = 42.
Constraints
- The number of nodes in the tree is in the range
[1, 3 * 104]
. -1000 <= Node.val <= 1000
내 솔루션
- DFS로 서치한다. 현재 경로의 합계를 저장해 둔다.
- dfs()의 return은 left, right 노드중 가장 큰 값을 리턴한다.
- return을 0, node.val+left, node.val+right를 하는 이유는 경로의 문제기 때문이다.
- 0을 비교하는 것은 합계가 마이너스가 나오기도해서 하위 노드 경로를 버릴 수 있기 때문이다.
var maxPathSum = function(root) {
let max = -Infinity;
const dfs = (node) => {
if(!node) return 0;
const left = dfs(node.left);
const right = dfs(node.right);
max = Math.max(max, node.val + left + right)
return Math.max(0, node.val + left, node.val + right);
}
dfs(root);
return max;
};
감상평
- 몇일전 풀었던 1026번 문제와 정말 비슷했다.
- 12월은 DFS문제만 쏟아지는 중
'coding test > leetCode' 카테고리의 다른 글
[leetCode/JS] 931. Minimum Falling Path Sum (0) | 2022.12.13 |
---|---|
[leetCode/JS] 70. Climbing Stairs (0) | 2022.12.12 |
[leetCode/JS] 1339. Maximum Product of Splitted Binary Tree (0) | 2022.12.10 |
[leetCode/JS] 1026. Maximum Difference Between Node and Ancestor (0) | 2022.12.09 |
[leetCode/JS] 872. Leaf-Similar Trees (0) | 2022.12.08 |
Comments