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

64. Minimum Path Sum

时间:2017-05-21 09:52:59      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:ade   dynamic   warning   number   i++   mat   tps   nbsp   logs   

题目:

Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path.

Note: You can only move either down or right at any point in time.

 

Hide Tags
 Array Dynamic Programming
 

链接: http://leetcode.com/problems/minimum-path-sum/

5/20/2017

注意第7,9,12行

 1 public class Solution {
 2     public int minPathSum(int[][] grid) {
 3         if (grid == null || grid.length == 0 || grid[0].length == 0) {
 4             return 0;
 5         }
 6         int[] path = new int[grid[0].length];
 7         path[0] = grid[0][0];
 8         for (int i = 1; i < grid[0].length; i++) {
 9             path[i] = grid[0][i] + path[i - 1];
10         }
11         for (int i = 1; i < grid.length; i++) {
12             path[0] = path[0] + grid[i][0];
13             for (int j = 1; j < grid[i].length; j++) {
14                 path[j] = Math.min(path[j - 1], path[j]) + grid[i][j];
15             }
16         }
17         return path[grid[0].length - 1];
18     }
19 }

 

64. Minimum Path Sum

标签:ade   dynamic   warning   number   i++   mat   tps   nbsp   logs   

原文地址:http://www.cnblogs.com/panini/p/6883838.html

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