-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path979.distribute-coins-in-binary-tree.py
46 lines (42 loc) · 1.26 KB
/
979.distribute-coins-in-binary-tree.py
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#
# @lc app=leetcode id=979 lang=python3
#
# [979] Distribute Coins in Binary Tree
#
# @lc code=start
# TAGS: Tree, DFS
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution:
# 28 ms, 97%. O(N)
def distributeCoins(self, root: TreeNode) -> int:
self.rv = 0
def dfs(node):
if not node: return 0
left = dfs(node.left)
right = dfs(node.right)
val = left + right + node.val
self.rv += abs(val - 1)
return val - 1
dfs(root)
return self.rv
# 28 ms, 97%. O(N). Same logic.
# The idea is to move coins from parent to child no matter
# even if it has coins or not. (result in negative numbers).
# Negative number means future coin will take that path.
def distributeCoins(self, root: TreeNode) -> int:
self.ans = 0
def dfs(node):
if not node: return 0
left = dfs(node.left)
right = dfs(node.right)
self.ans += abs(left) + abs(right)
total = node.val + left + right
return total - 1
dfs(root)
return self.ans
# @lc code=end