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 |
Tags
- leetcode풀기
- LeetCode
- python Leetcode
- 릿코드풀기
- leetcode 풀기
- 파이썬알고리즘풀기
- binary search
- 파이썬 알고리즘 풀기
- 릿코드 파이썬
- 파이썬 알고리즘
- python xor
- python 릿코드
- leetcode풀이
- 알고리즘풀이
- python priority queue
- 릿코드 풀기
- 코틀린기초
- 파이썬릿코드
- 파이썬 릿코드
- python 알고리즘
- 파이썬 프로그래머스
- 파이썬릿코드풀기
- 릿코드
- 파이썬알고리즘
- 잇츠디모
- python zip_longest
- python sorted
- 알고리즘풀기
- 상가수익률계산기
- 릿코드풀이
Archives
- Today
- Total
소프트웨어에 대한 모든 것
2265. Count Nodes Equal to Average of Subtree 본문
반응형
제목
문제)
2265. Count Nodes Equal to Average of Subtree
Given the root of a binary tree, return the number of nodes where the value of the node is equal to the average of the values in its subtree.
Note:
- The average of n elements is the sum of the n elements divided by n and rounded down to the nearest integer.
- A subtree of root is a tree consisting of root and all of its descendants.
Example 1:
Input: root = [4,8,5,0,1,null,6]
Output: 5
Explanation:
For the node with value 4: The average of its subtree is (4 + 8 + 5 + 0 + 1 + 6) / 6 = 24 / 6 = 4.
For the node with value 5: The average of its subtree is (5 + 6) / 2 = 11 / 2 = 5.
For the node with value 0: The average of its subtree is 0 / 1 = 0.
For the node with value 1: The average of its subtree is 1 / 1 = 1.
For the node with value 6: The average of its subtree is 6 / 1 = 6.
Example 2:
Input: root = [1]
Output: 1
Explanation: For the node with value 1: The average of its subtree is 1 / 1 = 1.
Constraints:
- The number of nodes in the tree is in the range [1, 1000].
- 0 <= Node.val <= 1000
솔루션1)
- postorder 재귀를 사용한다.
- postorder 재귀 함수는 자신 포함 하위 서브트리의 sum 값과 자식 수를 리턴한다.
# 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 averageOfSubtree(self, root: Optional[TreeNode]) -> int:
count = 0
def postorder(node):
nonlocal count
if node is None:
return 0, 0
l_val, l_child_count = postorder(node.left)
r_val, r_child_count = postorder(node.right)
sum_val = node.val + l_val + r_val
node_count = 1 + l_child_count + r_child_count
average = int(sum_val / node_count)
if average == node.val:
count += 1
return sum_val, node_count
postorder(root)
return count
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
2325. Decode the Message (0) | 2022.12.23 |
---|---|
1379. Find a Corresponding Node of a Binary Tree in a Clone of That Tree (2) | 2022.12.23 |
2433. Find The Original Array of Prefix Xor (0) | 2022.12.23 |
2396. Strictly Palindromic Number (0) | 2022.12.23 |
1476. Subrectangle Queries (0) | 2022.12.23 |
Comments