博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode 【 Triangle 】python 实现
阅读量:6794 次
发布时间:2019-06-26

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

题目

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.

 

代码:oj测试通过 Runtime: 82 ms

1 class Solution: 2     # @param triangle, a list of lists of integers 3     # @return an integer 4     def minimumTotal(self, triangle): 5         # special case 6         if len(triangle)==0: 7             return 0 8         # dp visit 9         LEVEL = len(triangle)10         dp = [0 for i in range(LEVEL)]11         for i in range(LEVEL):12             for j in range(len(triangle[i])-1,-1,-1):13                 if j==len(triangle[i])-1 :14                     dp[j] = dp[j-1] + triangle[i][j]15                 elif j==0 :16                     dp[0] = dp[0] + triangle[i][0]17                 else:18                     dp[j] = min(dp[j-1],dp[j]) + triangle[i][j]19         return min(dp)

 

思路

典型的动态规划,思路跟Unique Path类似,详情见

另,这道题还有一个bonus,如何用尽量少的额外空间。

一般的dp思路是,定义一个O(n)的空间,跟三角形等大小的额外空间。

这里只用三角形最底层那一层的大小的空间。

遍历第i层时,利用 dp[1:len(triangle[i])] 的空间存储开始节点到第i层各个节点的最小和。

这里注意:从后往前遍历可以节省数组空间。这是Array的一个常见操作技巧,详情见

连续刷刷题,能把前后的技巧多关联起来,对代码的能力提升有一定的帮助。

转载于:https://www.cnblogs.com/xbf9xbf/p/4251195.html

你可能感兴趣的文章
微服务框架下的思维变化-OSS.Core基础思路
查看>>
android viewHolder处理listView滑动
查看>>
JAVA泛型——转
查看>>
Python 中因urllib2/urlib遭遇的进程阻塞问题
查看>>
C++初学者请进--------关于学好C++的经典资料汇总
查看>>
checkbox设置复选框的只读效果不让用户勾选
查看>>
Golang 源码阅读 os.File
查看>>
IE 6 下出现 双倍距离 以及解决方案
查看>>
LayaAir 自旋转的小球跟随鼠标移动
查看>>
linux nginx 指定目录不可执行php文件
查看>>
django环境搭建
查看>>
共享 iOS沙盒文件管理
查看>>
MIME
查看>>
CMPopTipView
查看>>
windows系统下安装虚拟机-mac系统-视频教程
查看>>
spring ContentNegotiatingViewResolver---负责调用不同的j
查看>>
嵌入式Linux C编程 03
查看>>
华为聚簇表聚簇索引原理
查看>>
数据挖掘笔记
查看>>
Nginx配置性能优化
查看>>