美文网首页
leetcode-62. 不同路径

leetcode-62. 不同路径

作者: sleepforests | 来源:发表于2020-03-27 09:55 被阅读0次

    题目

    https://leetcode-cn.com/problems/unique-paths/description/

    代码

    动态规划二位数组入门问题

    /*
     * @lc app=leetcode.cn id=62 lang=java
     *
     * [62] 不同路径
     */
    
    // @lc code=start
    class Solution {
        public int uniquePaths(int m, int n) {
            if(m<=0||n<=0){
                return 0;
            }
    
            int [][]dp=new int[m][n];
    
            for(int i=0;i<m;i++){
                dp[i][0]=1;
            }
            for(int j=0;j<n;j++){
                dp[0][j]=1;
            }
            
            for(int i=1;i<m;i++){
                for(int j=1;j<n;j++){
                    dp[i][j]=dp[i-1][j]+dp[i][j-1];
                }
            }
    
            return dp[m-1][n-1];
        }
    }
    
    // @lc code=end
    
    
    

    相关文章

      网友评论

          本文标题:leetcode-62. 不同路径

          本文链接:https://www.haomeiwen.com/subject/kjnkuhtx.html