-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathbinary_tree_maximum_path_sum.rb
47 lines (39 loc) · 1.05 KB
/
binary_tree_maximum_path_sum.rb
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
46
47
# https://leetcode.com/problems/binary-tree-maximum-path-sum/
#
# Given a binary tree, find the maximum path sum. For this problem, a path is
# defined as any sequence of nodes from some starting node to any node in the
# tree along the parent-child connections. The path does not need to go
# through the root.
#
# For example:
#
# Given the below binary tree:
#
# 1
# / \
# 2 3
#
# Return 6.
# Definition for a binary tree node.
# class TreeNode
# attr_accessor :val, :left, :right
# def initialize(val)
# @val = val
# @left, @right = nil, nil
# end
# end
# @param {TreeNode} root
# @return {Integer}
def max_path_sum(root)
_max_path_sum_(root)[1]
end
private def _max_path_sum_(root)
return [0, nil] if root.nil?
lpathsum, lmax = _max_path_sum_(root.left)
rpathsum, rmax = _max_path_sum_(root.right)
pathsum = root.val + [lpathsum, rpathsum, 0].max
max = root.val + [lpathsum, 0].max + [rpathsum, 0].max
max = lmax if lmax && lmax > max
max = rmax if rmax && rmax > max
return [pathsum, max]
end