您的位置:首页 > 产品设计 > UI/UE

LeetCode OJ:Unique Paths(唯一路径)

2015-10-22 15:47 483 查看
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?

题目的意思就是给你一个m*n网格,求从左上角到右下角的路径条数即可,用dp很容易解决,推到式为res[i][j] = res[i - 1][j] + res[i][j - 1]。意思就是到一个特定点的路径条数是到其左侧或者上侧点的路径条数的总和。

代码如下:

class Solution {
public:
int uniquePaths(int m, int n) {
vector<vector<int> > ans(m, vector<int>(n, 0));
for(int i = 0; i < m; ++i)
ans[i][0] = 1;
for(int j = 0; j < n; ++j)
ans[0][j] = 1;

for(int i = 1; i < m; ++i){
for(int j = 1; j < n; ++j){
ans[i][j] = ans[i - 1][j] + ans[i][j - 1];
}
}
return ans[m - 1][n - 1];
}
};


还有一种方法是使用dfs来实现,但是数大了就容易超时,这题的本意可能就是dfs,这里把代码放上:

class Solution {
public:
int uniquePaths(int m, int n) {
times = 0;
maxHor = m, maxVer = n;
dfs(0,0);
return times;
}
void dfs(int hor, int ver){
if((hor == maxHor - 1) && (ver = maxVer - 1))
times++;
else{
if(hor + 1 < maxHor)  //注意这里不是while
dfs(hor + 1, ver);
if(ver + 1 < maxVer)
dfs(hor, ver + 1);
}
}
private:
int times;
int maxHor;
int maxVer;
};


java版本如下所示,dp实现:

public class Solution {
public int uniquePaths(int m, int n) {
if(m == 0 || n == 0)
return 0;
int [][] grid = new int [m]
;
for(int i = 0; i < m; ++i){
grid[i][0] = 1;
}
for(int i = 0; i < n; ++i){
grid[0][i] = 1;
}
for(int i = 1; i < m; ++i){
for(int j = 1; j < n; ++j){
grid[i][j] = grid[i-1][j] + grid[i][j-1];
}
}
return grid[m-1][n-1];
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: