티스토리 뷰
Problem
Given the root of a binary tree, find the maximum value v for which there exist different nodes a
and b
where v = |a.val - b.val| and a
is an ancestor of b
.
A node a
is an ancestor of b
if either: any child of a
is equal to b
or any child of a
is an ancestor of b
.
Example 1:
Input: root = [8,3,10,1,6,null,14,null,null,4,7,13]
Output: 7
Explanation: We have various ancestor-node differences, some of which are given below :
|8 - 3| = 5
|3 - 7| = 4
|8 - 1| = 7
|10 - 13| = 3
Among all possible differences, the maximum value of 7 is obtained by |8 - 1| = 7.
Example 2:
Input: root = [1,null,2,null,0,3]
Output: 3
Constraints:
- The number of nodes in the tree is in the range [2, 5000].
- 0 <= Node.val <= 10^5
Solution
이진 트리의 root 노드가 주어질 때 조상 노드와 자식 노드간의 차이가 가장 큰 값을 구하는 문제입니다.
재귀호출로 노드를 탐색하면서 최댓값과 최솟값을 갱신하여 최종적으로 차이의 절대값을 구하면 됩니다.
package io.lcalmsky.leetcode.maximum_difference_between_node_and_ancestor;
import io.lcalmsky.leetcode.TreeNode;
public class Solution {
public int maxAncestorDiff(TreeNode root) {
if (root == null) {
return 0;
}
return maxDiff(root, root.val, root.val);
}
private int maxDiff(TreeNode node, int min, int max) {
if (node == null) {
return Math.abs(max - min);
}
if (node.val < min) {
min = node.val;
}
if (node.val > max) {
max = node.val;
}
return Math.max(maxDiff(node.left, min, max), maxDiff(node.right, min, max));
}
}
Test
package io.lcalmsky.leetcode.maximum_difference_between_node_and_ancestor;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
import io.lcalmsky.leetcode.TreeNode;
import org.junit.jupiter.api.Test;
class SolutionTest {
@Test
void testAll() {
assertAll(
() -> test(TreeNode.of(8, 3, 10, 1, 6, null, 14, null, null, 4, 7, 13), 7),
() -> test(TreeNode.of(1, null, 2, null, 0, 3), 3)
);
}
private void test(TreeNode given, int expected) {
// when
Solution solution = new Solution();
int actual = solution.maxAncestorDiff(given);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
997. Find the Town Judge (0) | 2022.01.04 |
---|---|
1010. Pairs of Songs With Total Durations Divisible by 60 (0) | 2022.01.03 |
[LeetCode - Daily Challenge] 876. Middle of the Linked List (0) | 2021.12.31 |
[LeetCode - Daily Challenge] 476. Number Complement (0) | 2021.12.29 |
[LeetCode - Daily Challenge] 973. K Closest Points to Origin (0) | 2021.12.28 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 헥사고날 아키텍처
- spring boot app
- JPA
- 스프링 부트 튜토리얼
- 스프링 부트 애플리케이션
- Spring Data JPA
- Jackson
- 스프링 부트 회원 가입
- 클린 아키텍처
- @ManyToOne
- 스프링 부트
- gRPC
- Linux
- spring boot jwt
- Spring Boot JPA
- 함께 자라기 후기
- 알고리즘
- 스프링부트
- leetcode
- Java
- Spring Boot
- QueryDSL
- r
- intellij
- 함께 자라기
- JSON
- 스프링 데이터 jpa
- Spring Boot Tutorial
- spring boot application
- proto3
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함