博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
64. Minimum Path Sum java solutions
阅读量:5301 次
发布时间:2019-06-14

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

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.

 

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

非常自然能想到的解法,一遍AC。

转载于:https://www.cnblogs.com/guoguolan/p/5620528.html

你可能感兴趣的文章
团队作业
查看>>
数据持久化时的小bug
查看>>
mysql中key 、primary key 、unique key 与index区别
查看>>
bzoj2257
查看>>
Linux查看文件编码格式及文件编码转换<转>
查看>>
Leetcode: Find Leaves of Binary Tree
查看>>
Vue 模板解释
查看>>
http://www.bootcss.com/
查看>>
20145308 《网络对抗》 注入shellcode+Return-to-libc攻击 学习总结
查看>>
将多张图片和文字合成一张图片
查看>>
自己动手写ORM(01):解析表达式树生成Sql碎片
查看>>
如何使用USBWebserver在本机快速建立网站测试环境
查看>>
百度Ueditor编辑器的Html模式自动替换样式的解决方法
查看>>
变量提升
查看>>
线性表可用顺序表或链表存储的优缺点
查看>>
在现有的mysql主从基础上,搭建mycat实现数据的读写分离
查看>>
[Flex] flex手机项目如何限制横竖屏?只允许横屏?
查看>>
tensorflow的graph和session
查看>>
JavaScript动画打开半透明提示层
查看>>
Mybatis生成resulteMap时的注意事项
查看>>