leetcode 62 不同路径

简介: leetcode 62 不同路径

不同路径


07201f46005d459fa9e6e4285c7038dc.png

f5cdeb27b8084f5197583264ae79c583.png

动态规划

class Solution {
public:
    int uniquePaths(int m, int n) {
        if(m <= 1 || n<=1) return 1;
        vector<vector<int>> dp( m+1 , vector<int>(n+1,0));
        dp[1][1] = 1;
        dp[1][2] = 1;
        dp[2][1] = 1;
        for(int i=1 ; i<=m ; i++)
        {
            for(int j=1 ; j<=n ; j++)
            {   
                if(dp[i][j] != 0 ) continue;
                dp[i][j] = dp[i-1][j] + dp[i][j-1];
                // cout<<"i:"<<i<<" j:"<<j<<"   dp:"<<dp[i][j]<<endl;
            }
        }
        return dp[m][n];
    }
};

二刷

class Solution {
public:
    int uniquePaths(int m, int n) {
        vector<vector<int>> dp(m,vector<int>(n,0));
        for(int i=0 ; i<n ;i++)
            dp[0][i] = 1;
        for(int i=0 ; i<m ;i++)
            dp[i][0] = 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];
    }
};
相关文章
|
1月前
【LeetCode 35】112.路径总和
【LeetCode 35】112.路径总和
24 0
|
4月前
|
算法 Unix 测试技术
力扣经典150题第五十二题:简化路径
力扣经典150题第五十二题:简化路径
42 0
|
1月前
【LeetCode 36】113.路径总和II
【LeetCode 36】113.路径总和II
28 0
|
3月前
|
机器人 Python
【Leetcode刷题Python】62. 不同路径
LeetCode 62题 "不同路径" 的Python解决方案,使用动态规划算法计算机器人从网格左上角到右下角的所有可能路径数量。
69 0
|
5月前
|
存储 SQL 算法
LeetCode题目113:多种算法实现 路径总和ll
LeetCode题目113:多种算法实现 路径总和ll
|
1月前
【LeetCode 34】257.二叉树的所有路径
【LeetCode 34】257.二叉树的所有路径
17 0
|
3月前
|
Python
【Leetcode刷题Python】113. 路径总和 II
LeetCode上113号问题"路径总和 II"的Python实现,通过深度优先搜索来找出所有从根节点到叶子节点路径总和等于给定目标和的路径。
41 3
【Leetcode刷题Python】113. 路径总和 II
|
3月前
|
存储 Python
【Leetcode刷题Python】64. 最小路径和
一种使用动态规划解决LeetCode上64题“最小路径和”的Python实现方法,通过维护一个一维数组来计算从网格左上角到右下角的最小路径总和。
32 1
【Leetcode刷题Python】64. 最小路径和
|
3月前
|
存储 算法 Linux
LeetCode第71题简化路径
文章讲述了LeetCode第71题"简化路径"的解题方法,利用栈的数据结构特性来处理路径中的"."和"..",实现路径的简化。
LeetCode第71题简化路径
|
3月前
|
算法
LeetCode第64题最小路径和
LeetCode第64题"最小路径和"的解题方法,运用动态规划思想,通过构建一个dp数组来记录到达每个点的最小路径和,从而高效求解。
LeetCode第64题最小路径和