Triangle leetcode java
2024-08-26 02:04:47
题目:
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.
题解:
一道动态规划的经典题目。需要自底向上求解。
递推公式是: dp[i][j] = dp[i+1][j] + dp[i+1][j+1] ,当前这个点的最小值,由他下面那一行临近的2个点的最小值与当前点的值相加得到。
由于是三角形,且历史数据只在计算最小值时应用一次,所以无需建立二维数组,每次更新1维数组值,最后那个值里存的就是最终结果。
代码如下:
1 public int minimumTotal(List<List<Integer>> triangle) {
2 if(triangle.size()==1)
3 return triangle.get(0).get(0);
4
5 int[] dp = new int[triangle.size()];
6
7 //initial by last row
8 for (int i = 0; i < triangle.get(triangle.size() - 1).size(); i++) {
9 dp[i] = triangle.get(triangle.size() - 1).get(i);
}
// iterate from last second row
for (int i = triangle.size() - 2; i >= 0; i--) {
for (int j = 0; j < triangle.get(i).size(); j++) {
dp[j] = Math.min(dp[j], dp[j + 1]) + triangle.get(i).get(j);
}
}
return dp[0];
}
Reference: http://www.programcreek.com/2013/01/leetcode-triangle-java/
最新文章
- jenkins中submodule的使用
- CSS计数器
- 【processing】小代码2
- 浅谈js的键值对key和value
- C#程序中注释过多的8条理由
- 配置hadoop-1.2.1出现localhost: Error: JAVA_HOME is not set.
- python paramiko模块SSH自动登录linux系统进行操作
- 算法导论:Trie字典树
- 使用python读写windows剪切板
- iOS开发-相关文档
- XSS传染基础——JavaScript中的opener、iframe
- Uniqueidentifier数据类型
- Minimum Sum LCM(uva10791+和最小的LCM+推理)
- 重拾Python(2):如何安装第三方库(Windows)
- Python方法和属性的动态绑定 --面向对象
- HTML特殊符号(字符实体)大全
- 微擎开启性能优化里面的性能优化memcache内存优化及数据库读写分离
- C#修改GIF大小同时保持GIF仍然可动和背景透明
- ThinkPHP5入门(三)----模型篇
- Excel单元格格式设置
热门文章
- NOI.AC NOIP模拟赛 第三场 补记
- nginx+uwsgi+flask 服务器配置
- Dell PowerEdge R710服务器内存条插法/Dell 11G/12G系列服务器内存条插法(转)
- AspNetPager 控件使用
- Java IO:同步、非堵塞式IO(NIO)
- Visual studio 2010出现“error LNK1123: 转换到 COFF 期间失败: 文件无效或损坏”解决方式
- hdu 2546 饭卡(背包)
- VS2015 Offline Help Content is now available in 10 more languages!
- python脚本从excel表到处数据,生成指定格式的文件
- Delphi 判断时间是否合法 -IsValidDateTime、IsValidDate、IsValidTime、IsValidDateDay