当前位置:网站首页>力扣:63. 不同路径 II
力扣:63. 不同路径 II
2022-08-04 05:14:00 【empty__barrel】
力扣:63. 不同路径 II
题目:
一个机器人位于一个 m x n 网格的左上角 (起始点在下图中标记为 “Start” )。
机器人每次只能向下或者向右移动一步。机器人试图达到网格的右下角(在下图中标记为 “Finish”)。
现在考虑网格中有障碍物。那么从左上角到右下角将会有多少条不同的路径?
网格中的障碍物和空位置分别用 1 和 0 来表示。
普通代码:
class Solution {
public:
int uniquePathsWithObstacles(vector<vector<int>>& obstacleGrid) {
int m = obstacleGrid.size();
int n = obstacleGrid[0].size();
int dp[m][n];
for(int i = 0; i < m; ++i){
for(int j = 0; j < n; ++j){
if(obstacleGrid[i][j] == 1){
dp[i][j] = 0;
continue;
}
if(i == 0 && j == 0){
dp[i][j] = 1;
continue;
}
int a = i-1 < 0?0:dp[i-1][j];
int b = j-1 < 0?0:dp[i][j-1];
dp[i][j] = a+b;
}
}
return dp[m-1][n-1];
}
};
代码:一维数组实现
class Solution {
public:
int uniquePathsWithObstacles(vector<vector<int>>& obstacleGrid) {
if (obstacleGrid[0][0] == 1)
return 0;
vector<int> dp(obstacleGrid[0].size());
for (int j = 0; j < dp.size(); ++j)
if (obstacleGrid[0][j] == 1)
dp[j] = 0;
else if (j == 0)
dp[j] = 1;
else
dp[j] = dp[j-1];
for (int i = 1; i < obstacleGrid.size(); ++i)
for (int j = 0; j < dp.size(); ++j){
if (obstacleGrid[i][j] == 1)
dp[j] = 0;
else if (j != 0)
dp[j] = dp[j] + dp[j-1];
}
return dp.back();
}
};
边栏推荐
猜你喜欢
随机推荐
C专家编程 第5章 对链接的思考 5.6 轻松一下---看看谁在说话:挑战Turning测验
有趣的 Kotlin 0x0E:DeepRecursiveFunction
OpenSSF 安全计划:SBOM 将驱动软件供应链安全
C专家编程 第4章 令人震惊的事实:数组和指针并不相同 4.5 数组和指针的其他区别
Jenkins export and import Job Pipeline
关于yolo7和gpu
How to simplify the automation of modern e-procurement?
少年成就黑客,需要这些技能
Turn: Management is the love of possibility, and managers must have the courage to break into the unknown
Cache pool of unity framework
21 days learning challenge 】 【 sequential search
Do you think border-radius is just rounded corners?【Various angles】
大型连锁百货运维审计用什么软件好?有哪些功能?
如何将 DevSecOps 引入企业?
C Expert Programming Chapter 5 Thinking about Linking 5.2 Advantages of Dynamic Linking
【21 Days Learning Challenge】Direct Insertion Sort
redis中常见的面试题
触觉智能分享-SSD20X实现升级显示进度条
docker安装mysql与宿主机相差8小时的问题。
解决错误:npm WARN config global `--global`, `--local` are deprecated