摘要:第一种方法是很早之前写的,先对三角形两条斜边赋值,和分别等于两条斜边上一个点的和与当前点的和。然后套用动规公式进行横纵坐标的循环计算所有点的,再遍历最后一行的,找到最小值即可。
Problem
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.
NoticeBonus point if you are able to do this using only O(n) extra space, where n is the total number of rows in the triangle.
ExampleGiven the following triangle:
[ [2], [3,4], [6,5,7], [4,1,8,3] ]
The minimum path sum from top to bottom is 11 (i.e., 2 + 3 + 5 + 1 = 11).
Note第一种DP方法是很早之前写的,先对三角形两条斜边赋值,sum[i][0]和sum[i][i]分别等于两条斜边上一个点的sum[i-1][0]和sum[i-1][i-1]与当前点的和。
然后套用动规公式进行横纵坐标的循环计算所有点的path sum,再遍历最后一行的path sum,找到最小值即可。
DP:
public class Solution { public int minimumTotal(int[][] triangle) { int n = triangle.length; int[][] dp = new int[n][n]; dp[0][0] = triangle[0][0]; for (int i = 1; i < n; i++) { dp[i][0] = dp[i-1][0] + triangle[i][0]; dp[i][i] = dp[i-1][i-1] + triangle[i][i]; } for (int i = 1; i < n; i++) { for (int j = 1; j < i; j++) { dp[i][j] = Math.min(dp[i-1][j], dp[i-1][j-1]) + triangle[i][j]; } } int res = dp[n-1][0]; for (int i = 0; i < n; i++) { res = Math.min(res, dp[n-1][i]); } return res; } }
Advanced DP:
public class Solution { public int minimumTotal(int[][] A) { int n = A.length; for (int i = n-2; i >= 0; i--) { for (int j = 0; j <= i; j++) { A[i][j] += Math.min(A[i+1][j], A[i+1][j+1]); } } return A[0][0]; } }
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/65787.html
Problem Given a string s and a dictionary of words dict, determine if s can be break into a space-separated sequence of one or more dictionary words. Example Given s = lintcode, dict = [lint, code]. R...
Problem Given a string, find the first non-repeating character in it and return its index. If it doesnt exist, return -1. Example Given s = lintcode, return 0. Given s = lovelintcode, return 2. Tags A...
摘要:建立两个堆,一个堆就是本身,也就是一个最小堆另一个要写一个,使之成为一个最大堆。我们把遍历过的数组元素对半分到两个堆里,更大的数放在最小堆,较小的数放在最大堆。同时,确保最大堆的比最小堆大,才能从最大堆的顶端返回。 Problem Numbers keep coming, return the median of numbers at every time a new number a...
摘要:首先,我们应该了解字典树的性质和结构,就会很容易实现要求的三个相似的功能插入,查找,前缀查找。既然叫做字典树,它一定具有顺序存放个字母的性质。所以,在字典树的里面,添加,和三个参数。 Problem Implement a trie with insert, search, and startsWith methods. Notice You may assume that all i...
Problem Binary Tree PruningWe are given the head node root of a binary tree, where additionally every nodes value is either a 0 or a 1. Return the same tree where every subtree (of the given tree) not...
阅读 1205·2021-11-15 11:37
阅读 2220·2021-09-30 09:55
阅读 4391·2021-09-22 15:51
阅读 3719·2021-09-22 15:46
阅读 2748·2019-08-30 15:52
阅读 407·2019-08-29 16:20
阅读 2791·2019-08-29 15:12
阅读 1105·2019-08-26 18:27