Skip to content
LC-0120 Medium LeetCode

120. Triangle

Read the full problem statement on LeetCode.
Difficulty: medium Acceptance: 59% Topics: Array, Dynamic Programming
View full problem on LeetCode
Reference solution (spoiler · python)
from functools import reduce
# Time:  O(m * n)
# Space: O(n)

class Solution(object):
    # @param triangle, a list of lists of integers
    # @return an integer
    def minimumTotal(self, triangle):
        if not triangle:
            return 0

        cur = triangle[0] + [float("inf")]
        for i in xrange(1, len(triangle)):
            next = []
            next.append(triangle[i][0] + cur[0])
            for j in xrange(1, i + 1):
                next.append(triangle[i][j] + min(cur[j - 1], cur[j]))
            cur = next + [float("inf")]

        return reduce(min, cur)

Solution from kamyu104/LeetCode-Solutions · MIT