码迷,mamicode.com
首页 > 其他好文 > 详细

Triangle

时间:2015-03-13 20:35:52      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

Triangle

问题:

Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.

思路:

  简单的动态规划问题

我的代码:

技术分享
public class Solution {
    public int minimumTotal(List<List<Integer>> triangle) {
        if(triangle == null || triangle.size() == 0)    return -1;
        int size = triangle.size();
        for(int i = size - 2; i >= 0; i--)
        {
            List<Integer> cur = triangle.get(i);
            List<Integer> pre = triangle.get(i+1);
            for(int j = 0; j < cur.size(); j++)
            {
                cur.set(j, cur.get(j) + Math.min(pre.get(j),pre.get(j+1)));
            }
        }
        return triangle.get(0).get(0);
    }
}
View Code

 

Triangle

标签:

原文地址:http://www.cnblogs.com/sunshisonghit/p/4335913.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!