Leetcode 题解 - 动态规划-矩阵路径(7):矩阵的总路径数

[LeetCode] Unique Paths 不同的路径

 

A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).

The robot can only move either down or right at any point in time. The robot is trying to reach the bottom-right corner of the grid (marked 'Finish' in the diagram below).

How many possible unique paths are there?


Above is a 7 x 3 grid. How many possible unique paths are there?

Note: m and n will be at most 100.

Example 1:

Input: m = 3, n = 2
Output: 3
Explanation:
From the top-left corner, there are a total of 3 ways to reach the bottom-right corner:
1. Right -> Right -> Down
2. Right -> Down -> Right
3. Down -> Right -> Right

Example 2:

Input: m = 7, n = 3
Output: 28

 

这道题让求所有不同的路径的个数,一开始还真把我难住了,因为之前好像没有遇到过这类的问题,所以感觉好像有种无从下手的感觉。在网上找攻略之后才恍然大悟,原来这跟之前那道 Climbing Stairs 很类似,那道题是说可以每次能爬一格或两格,问到达顶部的所有不同爬法的个数。而这道题是每次可以向下走或者向右走,求到达最右下角的所有不同走法的个数。那么跟爬梯子问题一样,我们需要用动态规划Dynamic Programming来解,我们可以维护一个二维数组dp,其中dp[i][j]表示到当前位置不同的走法的个数,然后可以得到递推式为: dp[i][j] = dp[i - 1][j] + dp[i][j - 1],这里为了节省空间,我们使用一维数组dp,一行一行的刷新也可以,代码如下:

这道题就是爬梯子的思想,我要到末尾那么只有两个位置可以 到这两个位置分别有几种可能呢? 就是个无限递归的思想

class Solution {
    public int uniquePaths(int m, int n) {
        int[][] dp = new int[m][n];
        for(int i = 0; i < m; i++)
            dp[i][0] = 1;
        for(int i = 0; i < n; i++)
            dp[0][i] = 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];
    }
}

第二次写  

class Solution {
    public int uniquePaths(int m, int n) {
        int[][] dp = new int[m][n];
        dp[0][0] = 1;
        for(int i = 1; i < m; i++){
            dp[i][0] = 1; 
        }
        for(int i = 1; i < n; i++){
            dp[0][i] = 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];
    }
}

 

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在C#项目中集成ChatGPT可以通过引用openAI SDK并调用openAI API来实现。以下是一个示例代码: ```csharp using OpenAI_API; using OpenAI_API.Model; // 创建API客户端 var client = new OpenAIClient("YOUR_API_KEY"); // 调用API var response = client.Completions.CreateCompletion( new CompletionRequest { Model = "davinci", Prompt = "Hello, my name is", MaxTokens = 5 } ); // 获取API响应 var result = response.Choices\[0\].Text; ``` 这段代码演示了如何使用C#调用openAI API来生成ChatGPT的回复。首先,你需要引用openAI SDK并创建一个API客户端。然后,你可以使用`CreateCompletion`方法来发送API请求,并传递所需的参数,如模型名称、提示信息和最大令牌数。最后,你可以从API响应中获取生成的回复。 请注意,你需要将`YOUR_API_KEY`替换为你自己的openAI API密钥。此外,你可能还需要根据你的具体需求调整其他参数,如模型名称和最大令牌数。 #### 引用[.reference_title] - *1* [C#/.Net开发chatGPT、openAI的简单步骤](https://blog.csdn.net/sD7O95O/article/details/130939141)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* *3* [0基础快速集成ChatGPT!请收藏好这份保姆级入门指南!](https://blog.csdn.net/weixin_51484460/article/details/130527750)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值