首页 > 代码库 > Minimum Path Sum
Minimum Path Sum
Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right whichminimizes the sum of all numbers along its path.
Note: You can only move either down or right at any point in time.
答案
public class Solution { public int minPathSum(int[][] grid) { if(grid==null||grid.length==0||grid[0].length==0) { return 0; } int ROW=grid.length; int COL=grid[0].length; int [][]DISTANCE=new int[ROW][COL]; int row,col; DISTANCE[0][0]=grid[0][0]; for(col=1;col<COL;col++) { DISTANCE[0][col]=DISTANCE[0][col-1]+grid[0][col]; } for(row=1;row<ROW;row++) { DISTANCE[row][0]=DISTANCE[row-1][0]+grid[row][0]; } for(col=1;col<COL;col++) { for(row=1;row<ROW;row++) { DISTANCE[row][col]=Math.min( DISTANCE[row-1][col], DISTANCE[row][col-1])+grid[row][col]; } } return DISTANCE[ROW-1][COL-1]; } }
Minimum Path Sum
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。