Leetcode120.Triangle

Posted Liez

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode120.Triangle相关的知识,希望对你有一定的参考价值。

[Question]

 

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).

 

[Solution]

//C++

class Solution {
public:
    int minimumTotal(vector& triangle) {
        if(triangle.size()==0)
            return 0;

        if(triangle.size()==1)
            return(triangle[0][0]);

        for(int i=triangle.size()-2; i>=0; i--){
            for(int j=0; j<=i; j++){
                triangle[i][j] += min(triangle[i+1][j], triangle[i+1][j+1]);
            }
        }
        return triangle[0][0];
    }
};               

 

以上是关于Leetcode120.Triangle的主要内容,如果未能解决你的问题,请参考以下文章

leetcode 120. Triangle

leetcode 120 Triangle ----- java

LeetCode120 Triangle

LeetCode120——Triangle

LeetCode OJ 120. Triangle

LeetCode 120 Triangle