62. Unique Paths - Detailed Explanation

Free Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog. Take a step towards a better tech career now!

Problem Statement

You are given two integers, m and n, which represent the dimensions of an m x n grid. A robot is initially located in the top-left corner of this grid (cell (0, 0)). The robot can only move either down or right at any point in time. The goal is for the robot to reach the bottom-right corner of the grid (cell (m - 1, n - 1)). Your task is to determine how many unique paths exist for the robot to get from the top-left corner to the bottom-right corner.

Example 1

  • Input:
    m = 3, n = 7
  • Output:
    28
  • Explanation:
    There are 28 distinct ways for the robot to reach the bottom-right corner by only moving right or down.

Example 2

  • Input:
    m = 3, n = 2
  • Output:
    3
  • Explanation:
    The three unique paths are:
    1. Right → Down → Down
    2. Down → Down → Right
    3. Down → Right → Down

Example 3

  • Input:
    m = 7, n = 3
  • Output:
    28
  • Explanation:
    Similarly, there are 28 distinct ways for the robot to move from (0,0) to (6,2) using only right and down moves.

Hints and Intuition

  • Hint 1:
    Think about breaking down the problem into subproblems. At any given cell, the number of ways to reach that cell is the sum of the ways to get to the cell above it and the ways to get to the cell on its left.

  • Hint 2:
    Consider using dynamic programming (DP) to build up a solution for the entire grid. Alternatively, notice that the robot must make exactly (m-1) down moves and (n-1) right moves in some order, which leads to a combinatorial solution.

Detailed Approaches

Approach A: Dynamic Programming

Idea

  • Create a 2D DP array dp where dp[i][j] represents the number of unique paths to cell (i, j).
  • Base Cases:
    • The starting cell dp[0][0] is 1 (only one way to be at the start).
    • For the first row (i = 0), there is only one way to move (all rights) so dp[0][j] = 1.
    • For the first column (j = 0), there is only one way to move (all downs) so dp[i][0] = 1.
  • Recurrence:
    For any cell (i, j), the number of paths to reach it is:
    dp[i][j] = dp[i-1][j] + dp[i][j-1]
    
    This is because the robot can only come from the top or the left.

Walkthrough

  1. Initialization:
    Create a grid dp of size m x n. Initialize the first row and first column to 1.
  2. Fill the DP Table:
    For each cell (i, j) starting from (1, 1), compute dp[i][j] using the recurrence.
  3. Final Answer:
    The value at dp[m-1][n-1] is the number of unique paths from the start to the finish.

Approach B: Combinatorial Mathematics

Idea

  • To reach the bottom-right corner, the robot must make exactly (m-1) downs and (n-1) rights in any order.
  • The total number of moves required is (m-1 + n-1) = (m+n-2).
  • The problem reduces to finding the number of distinct arrangements of these moves, which is given by the binomial coefficient:
    Number of unique paths = C(m+n-2, m-1) = (m+n-2)! / [(m-1)! * (n-1)!]
    

Walkthrough

  1. Total Moves:
    Calculate the total number of moves (m+n-2).
  2. Choose Moves:
    Choose which moves are downs (or rights). The answer is the number of ways to choose (m-1) moves from (m+n-2).
  3. Final Answer:
    Compute the binomial coefficient to get the answer.

Code Implementation

Python Implementation (Dynamic Programming)

Python3
Python3

. . . .

Java Implementation (Dynamic Programming)

Java
Java

. . . .

Complexity Analysis

Dynamic Programming Approach

  • Time Complexity:
    The solution uses two nested loops to fill the dp table, resulting in O(m * n) time.

  • Space Complexity:
    The dp table requires O(m * n) space. (This can be optimized to O(n) by using a single array if needed.)

Combinatorial Approach

  • Time Complexity:
    Calculating the binomial coefficient can be done in O(m+n) time if optimized properly.
  • Space Complexity:
    Only a few variables are needed, so it is O(1).

Common Pitfalls and Edge Cases

Common Mistakes

  • Boundary Conditions:
    Failing to properly initialize the first row and first column may lead to incorrect results.

  • Off-by-One Errors:
    Incorrect indexing when filling the dp table.

  • Integer Overflow:
    When using the combinatorial approach, computing factorials directly can lead to overflow for larger inputs. Using an iterative multiplication and division approach can help mitigate this issue.

Edge Cases

  • Minimum Grid Size:
    When m = 1 or n = 1, there is only one unique path.
  • Large Values:
    Ensure that the algorithm is efficient enough when m and n are large. The DP approach with O(m*n) time should handle moderate grid sizes well.
  • Unique Paths II:
    Variation of the problem where the grid may contain obstacles.
  • Minimum Path Sum:
    Find the path with the minimum sum of values from the top-left to the bottom-right of a grid.
  • Climbing Stairs:
    A similar DP problem where you count the number of ways to reach the top of a staircase.
  • Grid Unique Paths Variations:
    Explore variations where moves in more directions are allowed or other constraints are added.
TAGS
leetcode
CONTRIBUTOR
Design Gurus Team
-

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
Why am I interested in a remote position?
Is networking easier than coding?
What is prompt engineering examples?
What is prompt engineering examples?
Related Courses
Image
Grokking the Coding Interview: Patterns for Coding Questions
Grokking the Coding Interview Patterns in Java, Python, JS, C++, C#, and Go. The most comprehensive course with 476 Lessons.
Image
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
Image
Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
Image
One-Stop Portal For Tech Interviews.
Copyright © 2025 Design Gurus, LLC. All rights reserved.
;