博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode - Triangle
阅读量:5865 次
发布时间:2019-06-19

本文共 868 字,大约阅读时间需要 2 分钟。

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来解决,更好的办法是从后向前计算,这样就能够使用一维数组空间的来解决,符合题目的意思//那么。动态转移方程为。dp[j] = triangle[i][j] + min(dp[j],dp[j+1])class Solution {public:    int minimumTotal(std::vector
> &triangle) { int n = triangle.size(); if(n < 1) return 0; std::vector
dp(triangle[n-1]); for(int i = n - 2; i >= 0; i--) { for(int j = 0; j < triangle[i].size(); j++) { dp[j] = triangle[i][j] + std::min(dp[j],dp[j+1]); } } return dp[0]; }};

转载地址:http://brjnx.baihongyu.com/

你可能感兴趣的文章
[转] Lazy evaluation
查看>>
常用查找算法总结
查看>>
grep 零宽断言
查看>>
被神话的大数据——从大数据(big data)到深度数据(deep data)思维转变
查看>>
修改校准申请遇到的问题
查看>>
【DL-CV】浅谈GoogLeNet(咕咕net)
查看>>
python大佬养成计划----win下对数据库的操作
查看>>
监控软件zabbix之安装
查看>>
Exchange Server 2016 独立部署/共存部署 (七)—— DAG功能测试
查看>>
对RTMP视频流进行BitmapData.draw()出错的解决办法
查看>>
Linux 进程中 Stop, Park, Freeze【转】
查看>>
Spark修炼之道(基础篇)——Linux大数据开发基础:第九节:Shell编程入门(一)...
查看>>
Duplicate Symbol链接错误的原因总结和解决方法[转]
查看>>
适配器模式
查看>>
建立低权限的ftp帐号
查看>>
htpasswd
查看>>
Android 编译出错解决
查看>>
【IOS开发】GDataXML解析XML
查看>>
什么是DDOS攻击?怎么防御?
查看>>
状态模式(State Pattern)
查看>>