Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.
For example, given 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:
Bonus 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.
public class Solution { // dp[i] = min(dp[i], dp[i - 1]) + num[i] public int minimumTotal(List<List<Integer>> triangle) { if (triangle == null || triangle.size() == 0 || triangle.get(0).size() == 0) return 0; int rows = triangle.size(); int cols = triangle.get(rows - 1).size(); int[] dp = new int[cols]; dp[0] = triangle.get(0).get(0); for (int i = 1; i < rows; i++) { int lastPos = triangle.get(i).size() - 1; dp[lastPos] = dp[lastPos - 1] + triangle.get(i).get(lastPos); for (int j = lastPos - 1; j > 0; j--) { dp[j] = Math.min(dp[j], dp[j - 1]) + triangle.get(i).get(j); } dp[0] += triangle.get(i).get(0); } int min = Integer.MAX_VALUE; for (int j = 0; j < cols; j++) { if (min > dp[j]) min = dp[j]; } return min; } // dp[i][j] = min(dp[i - 1][j], dp[i - 1][j - 1]) + num[i][j] /* public int minimumTotal(List<List<Integer>> triangle) { if (triangle == null || triangle.size() == 0 || triangle.get(0).size() == 0) return 0; int rows = triangle.size(); int cols = triangle.get(rows - 1).size(); int[][] dp = new int[rows][cols]; dp[0][0] = triangle.get(0).get(0); for (int i = 1; i < rows; i++) { for (int j = 0; j < triangle.get(i).size(); j++) { if (j > 0 && j < triangle.get(i).size() - 1) { dp[i][j] = Math.min(dp[i - 1][j - 1], dp[i - 1][j]) + triangle.get(i).get(j); } else if (j == 0) { dp[i][j] = dp[i - 1][j] + triangle.get(i).get(j); } else if (j == triangle.get(i).size() - 1) { dp[i][j] = dp[i - 1][j - 1] + triangle.get(i).get(j); } } } int min = Integer.MAX_VALUE; for (int i = 0; i < cols; i++) { if (dp[rows - 1][i] < min) min = dp[rows - 1][i]; } return min; } */ }
相关推荐
《在IDE中高效进行LeetCode练习:leetcode-editor的深度解析》 在编程学习与技能提升的过程中,LeetCode作为一款广受欢迎的在线编程挑战平台,帮助众多开发者锻炼算法思维,提高编程能力。而为了进一步提升练习体验...
在IDE中解决LeetCode问题,支持leetcode.com与leetcode-cn.com,满足基本的做题需求。 理论上支持: IntelliJ IDEA PhpStorm WebStorm PyCharm RubyMine AppCode CLion GoLand DataGrip Rider MPS Android Studio。
LeetCode Editor 7.4 版本的下载是一个名为 "leetcode-editor" 的压缩包文件。这个压缩包的导入过程非常简单,只需要将它直接拖入 IDEA 界面,IDEA 会自动识别并安装插件。这种方式使得安装过程无需额外的步骤,对于...
《PyPI官网下载 | leetcode-export-1.1.tar.gz》 在编程世界里,LeetCode是一个备受程序员喜爱的在线平台,它提供了大量的算法题目,帮助开发者提升编程技能和解决问题的能力。而Python作为一门广泛使用的高级编程...
`swift-Swif-LeetCode-Utils` 是一个实用工具库,它为Swift程序员提供了方便快捷的方法来处理这些问题。这个项目可以帮助你更高效地进行LeetCode上的编程练习,提升你的解决方案的可读性和简洁性。 首先,让我们...
leetcode-cli-plugins leetcode-cli 的第 3 方插件。 什么是 如何使用 如何使用 插件 名称 描述 增强的命令 按公司或标签过滤问题 list 不要在同一台计算机上使 Chrome 的会话过期 login 不要在同一台计算机上使 ...
~/.vscode/extensions/leetcode.vscode-leetcode-0.17.0/node_modules/vsc-leetcode-cli/bin/leetcode /usr/local/bin/leetcode 修改模板 open ~/.vscode/extensions/leetcode.vscode-leetcode-0.17.0/node_modules/...
leetcode-习题集资源leetcode-习题集资源leetcode-习题集资源leetcode-习题集资源leetcode-习题集资源leetcode-习题集资源
java java_leetcode-115-distinct-subsquences
java java_leetcode-112-path-sum
java java_leetcode-101-symmetric-tree
java java_leetcode-100-same-tree
然后进入到LeetCode-Spider目录中修改config.json,其中outputDir需要填写该工程的/docs/views文件夹路径 { "username": "aaa", "password": "bbb", "outputDir": "/Users/liuyao/Downloads/LeetCode-Blog-Test/docs...
解题思路思路和LeetCode-python 503.下一个更大元素 II一致,只是这里求的是下标的距离,而不是数值倒序搜索,用到栈,栈里存储索引情况1:若栈为
970. 强整数对数运算function powerfulIntegers(x: number, y: number, bound: number): numb
java java_leetcode-110-balanced-binary-tree
java java_leetcode-113-path-sumII
leetcode-习题集资源源代码leetcode-习题集资源源代码leetcode-习题集资源源代码leetcode-习题集资源源代码leetcode-习题集资源源代码
java java_leetcode-73-set-matrix-zeroes