[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 3 x 7 grid. How many possible unique paths are there?

Note: m and n will be at most 100.

開一個f[m][n]的數組,f[i][j] = f[i-1][j] + f[i][j-1],空間時間復雜度O(m*n)。用滾動數組空間復雜度可降為O(n)

 1 class Solution {
 2 public:
 3     int uniquePaths(int m, int n) {
 4         // Start typing your C/C++ solution below
 5         // DO NOT write int main() function
 6         vector<vector<int> > f(m, vector<int>(n));
 7         
 8         for(int i = 0; i < n; i++)
 9             f[0][i] = 1;
10             
11         for(int i = 0; i < m; i++)
12             f[i][0] = 1;
13             
14         for(int i = 1; i < m; i++)
15             for(int j = 1; j < n; j++)
16                 f[i][j] = f[i-1][j] + f[i][j-1];
17                 
18         return f[m-1][n-1];
19     }
20 };


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM