当前位置:网站首页>力扣:62.不同路径
力扣:62.不同路径
2022-08-04 05:14:00 【empty__barrel】
力扣:62.不同路径
题目:
一个机器人位于一个 m x n 网格的左上角 (起始点在下图中标记为 “Start” )。
机器人每次只能向下或者向右移动一步。机器人试图达到网格的右下角(在下图中标记为 “Finish” )。
问总共有多少条不同的路径?
代码:dp一题比代码随想录空间利用率高
class Solution {
public:
int uniquePaths(int m, int n) {
int dp[m][n];
// dp[0][0] = 0;
for(int i = 0; i < m; ++i){
for(int j = 0; j < n; ++j){
if(i== 0 && j==0) {
dp[0][0] = 1;
continue;
}
int a = j-1 < 0? 0:dp[i][j-1];
int b = i-1 < 0? 0:dp[i-1][j];
dp[i][j] = a+b;
}
}
return dp[m-1][n-1];
}
};
代码随想录代码:
class Solution {
public:
int uniquePaths(int m, int n) {
vector<vector<int>> dp(m, vector<int>(n, 0));
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];
}
};
代码:一维数组的实现
class Solution {
public:
int uniquePaths(int m, int n) {
vector<int> dp(n);
for (int i = 0; i < n; i++) dp[i] = 1;
for (int j = 1; j < m; j++) {
for (int i = 1; i < n; i++) {
dp[i] += dp[i - 1];
}
}
return dp[n - 1];
}
};
代码:数论方法
无论怎么走,走到终点都需要 m + n - 2 步,在这m + n - 2 步中,一定有 m - 1 步是要向下走的,此时就是一个组合问题了,判断m-1步是哪几步即可。
求组合的时候,要防止两个int相乘溢出! 所以不能把算式的分子都算出来,分母都算出来再做除法。需要在计算分子的时候,不断除以分母,
class Solution {
public:
int uniquePaths(int m, int n) {
long long numerator = 1; // 分子
int denominator = m - 1; // 分母
int count = m - 1;
int t = m + n - 2;
while (count--) {
numerator *= (t--);
while (denominator != 0 && numerator % denominator == 0) {
numerator /= denominator;
denominator--;
}
}
return numerator;
}
};
边栏推荐
- System design. Seckill system
- DataTable使用Linq进行分组汇总,将Linq结果集转化为DataTable
- 【21 Days Learning Challenge】Direct Insertion Sort
- 10 Convolutional Neural Networks for Deep Learning 3
- 7-1 LVS+NAT load balancing cluster, NAT mode deployment
- Redis common interview questions
- Tactile intelligent sharing - SSD20X realizes upgrade display progress bar
- [Cocos] cc.sys.browserType可能的属性
- How to dynamically add script dependent scripts
- Bolb analysis of image processing (1)
猜你喜欢
Structure function exercise
Converts XML tags to TXT format (voc conversion for yolo convenient training)
Tactile intelligent sharing - SSD20X realizes upgrade display progress bar
Do you think border-radius is just rounded corners?【Various angles】
字节最爱问的智力题,你会几道?
JVM Notes
Mini program + e-commerce, fun new retail
3000字,一文带你搞懂机器学习!
转:管理是对可能性的热爱,管理者要有闯进未知的勇气
败给“MySQL”的第60天,我重振旗鼓,四面拿下蚂蚁金服offer
随机推荐
【云原生--Kubernetes】Pod资源管理与探针检测
Structure function exercise
Towards Real-Time Multi-Object Tracking (JDE)
Explain detailed explanation and practice
深度学习环境配置
【21天学习挑战赛】直接插入排序
Programming hodgepodge (4)
在被面试官说了无数次后,终于潜下心来整理了一下JVM的类加载器
8款最佳实践,保护你的 IaC 安全!
2022软件测试面试题 最新字节跳动50道真题面试题 刷完已拿下15k 附讲解+答疑
路网编辑器技术预研
BFC、IFC、GFC、FFC概念理解、布局规则、形成方法、用处浅析
Redis common interview questions
符号表
高性能高可靠性高扩展性分布式防火墙架构
C Expert Programming Chapter 5 Thinking about Linking 5.2 Advantages of Dynamic Linking
Shocked, 99.9% of the students didn't really understand the immutability of strings
[One step in place] Jenkins installation, deployment, startup (complete tutorial)
少年成就黑客,需要这些技能
Uni-app 小程序 App 的广告变现之路:全屏视频广告