Grid Unique Paths – Count Paths in matrix
Last Updated :
06 Nov, 2024
Given an matrix of size m x n, the task is to find the count of all unique possible paths from top left to the bottom right with the constraints that from each cell we can either move only to the right or down.
Examples:
Input: m = 2, n = 2
Output: 2
Explanation: There are two paths
(0, 0) -> (0, 1) -> (1, 1)
(0, 0) -> (1, 0) -> (1, 1)
Input: m = 2, n = 3
Output: 3
Explanation: There are three paths
(0, 0) -> (0, 1) -> (0, 2) -> (1, 2)
(0, 0) -> (0, 1) -> (1, 1) -> (1, 2)
(0, 0) -> (1, 0) -> (1, 1) -> (1, 2)
Using Recursion – O(2^(n+m)) Time and O(n+m) Space
We can recursively move either to the right or down from the start until we reach the destination and then adding up all valid paths to get the answer. A person can reach from cell (i, j) to (i+1, j) or (i, j+1). Thus for each cell (i, j) we can calculate the number of ways to reach destination by adding up both value. This gives us the following recurrence relation:
- numberOfPaths(i, j) = numberOfPaths(i+1, j) + numberOfPaths(i, j+1)
C++
// A c++ program to count all possible paths
// from top left to bottom right
// using recursion
#include <iostream>
using namespace std;
int numberOfPaths(int m, int n) {
// If either given row number is first or given column
// number is first
if (m == 1 || n == 1)
return 1;
// sum the paths coming from the cell above (m-1, n)
// and the cell to the left (m, n-1)
return numberOfPaths(m - 1, n) + numberOfPaths(m, n - 1);
}
int main() {
int m = 3;
int n = 3;
int res = numberOfPaths(m, n);
cout << res << endl;
return 0;
}
Java
// A Java program to count all possible paths
// from top left to bottom right
// using recursion
class GfG {
static int numberOfPaths(int m, int n) {
// If either given row number is first or
// given column number is first
if (m == 1 || n == 1)
return 1;
return numberOfPaths(m - 1, n)
+ numberOfPaths(m, n - 1);
}
public static void main(String args[]) {
int m = 3;
int n = 3;
int res = numberOfPaths(m, n);
System.out.println(res);
}
}
Python
# Python program to count all possible paths
# from top left to bottom right
# using recursion
def numberOfPaths(m, n):
# If either given row number is first
# or given column number is first
if(m == 1 or n == 1):
return 1
return numberOfPaths(m - 1, n) + numberOfPaths(m, n - 1)
if __name__ == '__main__':
m = 3
n = 3
res = numberOfPaths(m, n)
print(res)
C#
// A C# program to count all possible paths
// from top left to bottom right
// using recursion
using System;
class GfG {
static int numberOfPaths(int m, int n) {
// If either given row number is first or
// given column number is first
if (m == 1 || n == 1)
return 1;
return numberOfPaths(m - 1, n)
+ numberOfPaths(m, n - 1);
}
static public void Main() {
int m = 3;
int n = 3;
int res = numberOfPaths(m, n);
Console.WriteLine(res);
}
}
JavaScript
// A Javascript program to count all possible paths
// from top left to bottom right
// using recursion
function numberOfPaths(m, n) {
// If either given row number is first or
// given column number is first
if (m == 1 || n == 1)
return 1;
return numberOfPaths(m - 1, n)
+ numberOfPaths(m, n - 1);
}
m = 3;
n = 3;
res = numberOfPaths(m, n);
console.log(res);
Using Top-Down DP (Memoization) – O(m*n) Time and O(m*n) Space
If we notice carefully, we can observe that the above recursive solution holds the following two properties of Dynamic Programming:
1. Optimal Substructure:
Number of unique possibe path to reach cell (n,m) depends on the optimal solutions of the subproblems numberOfPaths(n, m-1) and numberOfPaths(n-1, m). By combining these optimal substrutures, we can efficiently calculate the total number of ways to reach the (n, m)th cell.
2. Overlapping Subproblems:
While applying a recursive approach in this problem, we notice that certain subproblems are computed multiple times. For example, when calculating numberOfPaths(3, 3), we recursively calculate numberOfPaths(3, 2) and numberOfPaths(2, 3), which in turn will recursively compute numberOfPaths(2, 2) again from numberOfPaths(3, 2) and numberOfPaths(2, 3). This redundancy leads to overlapping subproblems.
The recursive solution involves changing two parameters: m which is representing the current row and n which is representing the current column. We need to track both parameter, so we need to create 2D array of size (m+1) x (n+1). because the m will be in range of [0,m] and n will be in range of [0,n].
C++
// C++ implementation to count of possible paths to reach
// using Top-Down DP (Memoization)
#include <iostream>
#include <vector>
using namespace std;
int countPaths(int m, int n, vector<vector<int>> &memo) {
// base case
if (n == 1 || m == 1)
return memo[m][n] = 1;
// Add the element in the memo table
// If it was not computed before
if (memo[m][n] == 0)
memo[m][n] = countPaths(m - 1, n, memo) +
countPaths(m, n - 1, memo);
return memo[m][n];
}
int numberOfPaths(int m, int n) {
vector<vector<int>> memo(m + 1, vector<int>(n + 1, 0));
int ans = countPaths(m, n, memo);
return ans;
}
int main() {
int n = 3, m = 3;
int res = numberOfPaths(m, n);
cout << res << endl;
return 0;
}
Java
// Java implementation to count of possible paths to reach
// using Using Top-Down DP (Memoization)
import java.util.ArrayList;
import java.util.List;
class GfG {
static int countPaths(int m, int n,
List<List<Integer> > memo) {
if (n == 1 || m == 1) {
memo.get(m).set(n, 1);
return 1;
}
// Add the element in the memo table
// If it was not computed before
if (memo.get(m).get(n) == 0) {
int paths = countPaths(m - 1, n, memo)
+ countPaths(m, n - 1, memo);
memo.get(m).set(n, paths);
}
return memo.get(m).get(n);
}
static int numberOfPaths(int m, int n) {
List<List<Integer> > memo = new ArrayList<>();
for (int i = 0; i <= m; i++) {
List<Integer> row = new ArrayList<>();
for (int j = 0; j <= n; j++) {
row.add(0);
}
memo.add(row);
}
int res = countPaths(m, n, memo);
return res;
}
public static void main(String[] args) {
int n = 3, m = 3;
int ans = numberOfPaths(m, n);
System.out.println(ans);
}
}
Python
# Python implementation to count of possible paths to reach
# using Using Top-Down DP (Memoization)
def countPaths(m, n, memo):
if n == 1 or m == 1:
memo[m][n] = 1
return 1
# Add the element in the memo table
# If it was not computed before
if memo[m][n] == 0:
memo[m][n] = countPaths(m-1,n, memo) + \
countPaths(m,n-1, memo)
return memo[m][n]
def number_of_paths(m, n):
memo = [[0 for _ in range(n + 1)] for _ in range(m + 1)]
ans = countPaths(m, n, memo)
return ans
if __name__ == "__main__":
n, m = 3, 3
res = number_of_paths(m, n)
print(res)
C#
// C# implementation to count of possible paths to reach
// using Using Top-Down DP (Memoization)
using System;
using System.Collections.Generic;
class GfG {
static int countPaths(int m, int n,
List<List<int> > memo) {
if (n == 1 || m == 1) {
memo[m][n] = 1;
return 1;
}
// Add the element in the memo table
// If it was not computed before
if (memo[m][n] == 0) {
memo[m][n] = countPaths(m - 1, n, memo)
+ countPaths(m, n - 1, memo);
}
return memo[m][n];
}
static int NumberOfPaths(int m, int n) {
List<List<int> > memo = new List<List<int> >();
for (int i = 0; i <= m; i++) {
List<int> row = new List<int>(new int[n + 1]);
memo.Add(row);
}
int ans = countPaths(m, n, memo);
return ans;
}
static void Main() {
int n = 3, m = 3;
int res = NumberOfPaths(m, n);
Console.WriteLine(res);
}
}
JavaScript
// Javascript implementation to count of possible paths to
// reach using Using Top-Down DP (Memoization)
function countPaths(m, n, memo) {
if (n === 1 || m === 1) {
memo[m][n] = 1;
return 1;
}
// Add the element in the memo table
// If it was not computed before
if (memo[m][n] === 0) {
memo[m][n] = countPaths(m - 1, n, memo)
+ countPaths(m, n - 1, memo);
}
return memo[m][n];
}
function numberOfPaths(m, n) {
const memo = Array.from({length : m + 1},
() => Array(n + 1).fill(0));
const ans = countPaths(m, n, memo);
return ans;
}
const n = 3;
const m = 3;
const res = numberOfPaths(m, n);
console.log(res);
Using Bottom-Up DP (Tabulation) – O(m * n) Time and O(m * n) Space
The approach is similar to the previous one. just instead of breaking down the problem recursively, we iteratively build up the solution by calculating in bottom-up manner. Maintain a dp[][] table such that dp[i][j] stores the count all unique possible paths to reach the cell (i, j).
Base Case:
- For i =0 and 0 <= j < m , dp[i][j] = 1
- for j=0 and 0 <=i< n , dp[i][j] = 1
Recursive Case:
- For i > 1 and j>1 , dp[i][j] = dp[i-1][j] + dp[i][j-1]
C++
// A C++ program to count all possible paths
// from top left to bottom right
// using tabulation
#include <iostream>
#include <vector>
using namespace std;
int numberOfPaths(int m, int n) {
int dp[m][n];
// Count of paths to reach any cell in first column is 1
for (int i = 0; i < m; i++)
dp[i][0] = 1;
// Count of paths to reach any cell in first row is 1
for (int j = 0; j < n; j++)
dp[0][j] = 1;
// Calculate count of paths for other cells in
// bottom-up manner using the recursive solution
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];
}
int main() {
int res = numberOfPaths(3, 3);
cout << res << endl;
return 0;
}
Java
// A Java program to count all possible paths
// from top left to bottom right
// using tabulation
import java.io.*;
class GfG {
static int numberOfPaths(int m, int n) {
int dp[][] = new int[m][n];
// Count of paths to reach any cell in
// first column is 1
for (int i = 0; i < m; i++)
dp[i][0] = 1;
// Count of paths to reach any cell in
// first row is 1
for (int j = 0; j < n; j++)
dp[0][j] = 1;
// Calculate count of paths for other
// cells in bottom-up manner using
// the recursive solution
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];
}
public static void main(String args[]) {
int res = numberOfPaths(3, 3);
System.out.println(res);
}
}
Python
# Python3 program to count all possible paths
# from top left to bottom right
# using tabulation
def numberOfPaths(m, n):
dp = [[0 for x in range(n)] for y in range(m)]
# Count of paths to reach any
# cell in first column is 1
for i in range(m):
dp[i][0] = 1
# Count of paths to reach any
# cell in first row is 1
for j in range(n):
dp[0][j] = 1
# Calculate count of paths for other
# cells in bottom-up
# manner using the recursive solution
for i in range(1, m):
for j in range(1, n):
dp[i][j] = dp[i - 1][j] + dp[i][j - 1]
return dp[m - 1][n - 1]
if __name__ == '__main__':
m = 3
n = 3
res = numberOfPaths(m, n)
print(res)
C#
// A C# program to count all possible paths
// from top left to bottom right
// using tabulation
using System;
class GfG {
static int numberOfPaths(int m, int n) {
int[, ] dp = new int[m, n];
// Count of paths to reach any cell in
// first column is 1
for (int i = 0; i < m; i++)
dp[i, 0] = 1;
// Count of paths to reach any cell in
// first row is 1
for (int j = 0; j < n; j++)
dp[0, j] = 1;
// Calculate count of paths for other
// cells in bottom-up manner using
// the recursive solution
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];
}
static void Main() {
int res = numberOfPaths(3, 3);
Console.WriteLine(res);
}
}
JavaScript
// Javascript program to count all possible paths
// from top left to bottom right
// using tabulation
function numberOfPaths(m, n) {
var dp = Array(m).fill(0).map(x => Array(n).fill(0));
// Count of paths to reach any cell in
// first column is 1
for (i = 0; i < m; i++)
dp[i][0] = 1;
// Count of paths to reach any cell in
// first row is 1
for (j = 0; j < n; j++)
dp[0][j] = 1;
// Calculate count of paths for other
// cells in bottom-up manner using
// the recursive solution
for (i = 1; i < m; i++) {
for (j = 1; j < n; j++)
dp[i][j] = dp[i - 1][j] + dp[i][j - 1];
}
return dp[m - 1][n - 1];
}
res = numberOfPaths(3, 3);
console.log(res);
Using Space Optimized DP – O(n*m) Time and O(n) Space
In the previous approach using dynamic programming, we derived a relation between states as follows:
- dp[i][j] = dp[i-1][j]+dp[i][j-1]
If we observe carefully, we see that to calculate the current state dp[i][j] , we need the previous row dp[i-1][j] value and the current row dp[i][j-1] value. There is no need to store all previous states Instead, we can maintain a single prev
array to store values from the previous row, and update its values to represent the current row as we iterate.
Here, dp[j-1] represents the value of the current row’s previous cell (i.e., the left cell in the current row, dp[i][j-1]), while dp[j] holds the value from the previous row in the same column (i.e., dp[i-1][j] ).
C++
// A C++ program to count all possible paths
// from top left to bottom right
// using space optimised
#include <iostream>
using namespace std;
int numberOfPaths(int m, int n) {
// `dp[j]` will represent the number of paths to
// reach the current cell in the row, with `dp[j]` initialized
// to 1 as the only path in the first row.
int dp[n] = {1};
dp[0] = 1;
for (int i = 0; i < m; i++) {
for (int j = 1; j < n; j++) {
// Update dp[j] to include paths from the
// cell directly to the left. dp[j - 1]` is the value of
// the current row's previous cell, and `dp[j]` itself stores
// the value from the previous row (same column).
dp[j] += dp[j - 1];
}
}
return dp[n - 1];
}
int main() {
int res = numberOfPaths(3, 3);
cout << res << endl;
}
Java
// A Java program to count all possible paths
// from top left to bottom right
// using space optimised
import java.io.*;
class GfG {
static int numberOfPaths(int m, int n) {
// Create a 1D array to store results of
// subproblems
int[] dp = new int[n];
dp[0] = 1;
for (int i = 0; i < m; i++) {
for (int j = 1; j < n; j++) {
// Update dp[j] to include paths from the
// cell directly to the left. dp[j - 1]` is the value of
// the current row's previous cell, and `dp[j]` itself stores
// the value from the previous row (same column).
dp[j] += dp[j - 1];
}
}
return dp[n - 1];
}
public static void main(String args[]) {
int res = numberOfPaths(3, 3);
System.out.println(res);
}
}
Python
# A Python program to count all possible paths
# from top left to bottom right
# using space optimised
def numberOfPaths(p, q):
# Create a 1D array to store
# results of subproblems
dp = [1 for i in range(q)]
for i in range(p - 1):
for j in range(1, q):
dp[j] += dp[j - 1]
return dp[q - 1]
if __name__ == '__main__':
print(numberOfPaths(3, 3))
C#
// A C# program to count all possible paths
// from top left to bottom right
// using space optimised
using System;
class GfG {
static int numberOfPaths(int m, int n) {
// Create a 1D array to store
// results of subproblems
int[] dp = new int[n];
dp[0] = 1;
for (int i = 0; i < m; i++) {
for (int j = 1; j < n; j++) {
// Update dp[j] to include paths from the
// cell directly to the left. dp[j - 1]` is the value of
// the current row's previous cell, and `dp[j]` itself stores
// the value from the previous row (same column).
dp[j] += dp[j - 1];
}
}
return dp[n - 1];
}
public static void Main() {
int res = numberOfPaths(3, 3);
Console.Write(res);
}
}
JavaScript
// A Javascript program to count all possible paths
// from top left to bottom right
// using space optimised
function numberOfPaths(m, n) {
// Create a 1D array to store results
// of subproblems
dp = Array.from({length : n}, (_, i) => 0);
dp[0] = 1;
for (i = 0; i < m; i++) {
for (j = 1; j < n; j++) {
// Update dp[j] to include paths from the
// cell directly to the left. dp[j - 1]` is the value of
// the current row's previous cell, and `dp[j]` itself stores
// the value from the previous row (same column).
dp[j] += dp[j - 1];
}
}
return dp[n - 1];
}
res = numberOfPaths(3, 3);
console.log(res);
Time Complexity: O(m x n), The program uses nested loops to fill the 1D array “dp”. The outer loop runs “m” times, and the inner loop runs “n” times. Therefore, the time complexity of the program is O(m*n).
Auxiliary Space: O(n), The program uses a 1D array “dp” of size “n” to store the results of subproblems. Hence, the space complexity of the program is O(n).
Note: the count can also be calculated using the formula (m-1 + n-1)!/(m-1)! * (n-1)!
Using combinatorics – O(1) Time and O(1) Space
To solve the problem follow the below idea:
In this combinatorics approach, We have to calculate m+n-2Cn-1 here which will be (m+n-2)! / (n-1)! (m-1)!
m = number of rows, n = number of columns.
Total number of moves in which we have to move down to reach the last row = m – 1 (m rows, since we are starting from (1, 1) that is not included)
Total number of moves in which we have to move right to reach the last column = n – 1 (n column, since we are starting from (1, 1) that is not included)
Down moves = (m – 1)
Right moves = (n – 1)
Total moves = Down moves + Right moves = (m – 1) + (n – 1)
Now think of moves as a string of ‘R’ and ‘D’ characters where ‘R’ at any ith index will tell us to move ‘Right’ and ‘D’ will tell us to move ‘Down’. Now think of how many unique strings (moves) we can make where in total there should be (n – 1 + m – 1) characters and there should be (m – 1) ‘D’ character and (n – 1) ‘R’ character?
Choosing positions of (n – 1) ‘R’ characters results in the automatic choosing of (m – 1) ‘D’ character positions
The number of ways to choose positions for (n – 1) ‘R’ character = Total positions C n – 1 = Total positions C m – 1 = (n – 1 + m – 1) != [Tex]\frac {(n – 1 + m – 1)!} {(n – 1) ! (m – 1)!} [/Tex]
Another way to think about this problem:
Count the Number of ways to make an N digit Binary String (String with 0s and 1s only) with ‘X’ zeros and ‘Y’ ones (here we have replaced ‘R’ with ‘0’ or ‘1’ and ‘D’ with ‘1’ or ‘0’ respectively whichever suits you better)
C++
// A C++ program to count all possible paths from
// top left to top bottom using combinatorics
#include <iostream>
using namespace std;
int numberOfPaths(int m, int n) {
// We have to calculate m+n-2 C n-1 here
// which will be (m+n-2)! / (n-1)! (m-1)!
int path = 1;
for (int i = n; i < (m + n - 1); i++) {
path *= i;
path /= (i - n + 1);
}
return path;
}
int main() {
int res = numberOfPaths(3, 3);
cout<< res <<endl;
return 0;
}
Java
// Java program to count all possible paths from
// top left to top bottom using combinatorics
import java.io.*;
class GfG {
static int numberOfPaths(int m, int n) {
// We have to calculate m+n-2 C n-1 here
// which will be (m+n-2)! / (n-1)! (m-1)!
int path = 1;
for (int i = n; i < (m + n - 1); i++) {
path *= i;
path /= (i - n + 1);
}
return path;
}
public static void main(String[] args) {
int res = numberOfPaths(3, 3);
System.out.println(res);
}
}
Python
# Python3 program to count all possible
# paths from top left to top bottom
# using combinatorics
def numberOfPaths(m, n):
path = 1
# We have to calculate m + n-2 C n-1 here
# which will be (m + n-2)! / (n-1)! (m-1)! path = 1;
for i in range(n, (m + n - 1)):
path *= i
path //= (i - n + 1)
return path
res = numberOfPaths(3, 3)
print(res)
C#
// C# program to count all possible paths from
// top left to top bottom using combinatorics
using System;
class GfG {
static int numberOfPaths(int m, int n) {
// We have to calculate m+n-2 C n-1 here
// which will be (m+n-2)! / (n-1)! (m-1)!
int path = 1;
for (int i = n; i < (m + n - 1); i++) {
path *= i;
path /= (i - n + 1);
}
return path;
}
static void Main() {
int res = numberOfPaths(3,3);
Console.WriteLine(res);
}
}
JavaScript
// Javascript program to count all possible paths from
// top left to top bottom using combinatorics
function numberOfPaths(m, n){
// We have to calculate m+n-2 C n-1 here
// which will be (m+n-2)! / (n-1)! (m-1)!
var path = 1;
for (i = n; i < (m + n - 1); i++) {
path *= i;
path = parseInt(path / (i - n + 1));
}
return path;
}
res = numberOfPaths(3, 3);
console.log(res);
Time Complexity: O(m), The time complexity is O(m), where m is the maximum of m and n. This is because the for loop iterates m times, and each iteration involves a constant number of arithmetic operations.
Auxiliary Space: O(1),
Similar Reads
Dynamic Programming or DP
Dynamic Programming is an algorithmic technique with the following properties. It is mainly an optimization over plain recursion. Wherever we see a recursive solution that has repeated calls for the same inputs, we can optimize it using Dynamic Programming. The idea is to simply store the results of
3 min read
What is Memoization? A Complete Tutorial
In this tutorial, we will dive into memoization, a powerful optimization technique that can drastically improve the performance of certain algorithms. Memoization helps by storing the results of expensive function calls and reusing them when the same inputs occur again. This avoids redundant calcula
6 min read
Dynamic Programming (DP) Introduction
Dynamic Programming is a commonly used algorithmic technique used to optimize recursive solutions when same subproblems are called again. The core idea behind DP is to store solutions to subproblems so that each is solved only once. To solve DP problems, we first write a recursive solution in a way
15+ min read
Tabulation vs Memoization
Tabulation and memoization are two techniques used to implement dynamic programming. Both techniques are used when there are overlapping subproblems (the same subproblem is executed multiple times). Below is an overview of two approaches. Memoization:Top-down approachStores the results of function c
9 min read
Optimal Substructure Property in Dynamic Programming | DP-2
The following are the two main properties of a problem that suggest that the given problem can be solved using Dynamic programming: 1) Overlapping Subproblems 2) Optimal Substructure We have already discussed the Overlapping Subproblem property. Let us discuss the Optimal Substructure property here.
4 min read
Overlapping Subproblems Property in Dynamic Programming | DP-1
Dynamic Programming is an algorithmic paradigm that solves a given complex problem by breaking it into subproblems using recursion and storing the results of subproblems to avoid computing the same results again. Following are the two main properties of a problem that suggests that the given problem
10 min read
Steps to solve a Dynamic Programming Problem
Steps to solve a Dynamic programming problem:Identify if it is a Dynamic programming problem.Decide a state expression with the Least parameters.Formulate state and transition relationship.Apply tabulation or memorization.Step 1: How to classify a problem as a Dynamic Programming Problem? Typically,
14 min read
Advanced Topics
Count Ways To Assign Unique Cap To Every Person
Given n people and 100 types of caps labelled from 1 to 100, along with a 2D integer array caps where caps[i] represents the list of caps preferred by the i-th person, the task is to determine the number of ways the n people can wear different caps. Example: Input: caps = [[3, 4], [4, 5], [5]] Outpu
15+ min read
Digit DP | Introduction
Prerequisite : How to solve a Dynamic Programming Problem ?There are many types of problems that ask to count the number of integers 'x' between two integers say 'a' and 'b' such that x satisfies a specific property that can be related to its digits.So, if we say G(x) tells the number of such intege
14 min read
Sum over Subsets | Dynamic Programming
Prerequisite: Basic Dynamic Programming, Bitmasks Consider the following problem where we will use Sum over subset Dynamic Programming to solve it. Given an array of 2n integers, we need to calculate function F(x) = ?Ai such that x&i==i for all x. i.e, i is a bitwise subset of x. i will be a bit
10 min read
Easy problems in Dynamic programming
Coin Change - Count Ways to Make Sum
Given an integer array of coins[] of size n representing different types of denominations and an integer sum, the task is to count all combinations of coins to make a given value sum. Note: Assume that you have an infinite supply of each type of coin. Examples: Input: sum = 4, coins[] = [1, 2, 3]Out
15+ min read
Subset Sum Problem
Given an array arr[] of non-negative integers and a value sum, the task is to check if there is a subset of the given array whose sum is equal to the given sum. Examples: Input: arr[] = [3, 34, 4, 12, 5, 2], sum = 9Output: TrueExplanation: There is a subset (4, 5) with sum 9. Input: arr[] = [3, 34,
15+ min read
Introduction and Dynamic Programming solution to compute nCr%p
Given three numbers n, r and p, compute value of nCr mod p. Example: Input: n = 10, r = 2, p = 13 Output: 6 Explanation: 10C2 is 45 and 45 % 13 is 6.We strongly recommend that you click here and practice it, before moving on to the solution.METHOD 1: (Using Dynamic Programming) A Simple Solution is
15+ min read
Rod Cutting
Given a rod of length n inches and an array price[]. price[i] denotes the value of a piece of length i. The task is to determine the maximum value obtainable by cutting up the rod and selling the pieces. Note: price[] is 1-indexed array. Input: price[] = [1, 5, 8, 9, 10, 17, 17, 20]Output: 22Explana
15+ min read
Painting Fence Algorithm
Given a fence with n posts and k colors, the task is to find out the number of ways of painting the fence so that not more than two consecutive posts have the same color. Examples: Input: n = 2, k = 4Output: 16Explanation: We have 4 colors and 2 posts.Ways when both posts have same color: 4 Ways whe
15 min read
Longest Common Subsequence (LCS)
Given two strings, s1 and s2, the task is to find the length of the Longest Common Subsequence. If there is no common subsequence, return 0. A subsequence is a string generated from the original string by deleting 0 or more characters, without changing the relative order of the remaining characters.
15+ min read
Longest Increasing Subsequence (LIS)
Given an array arr[] of size n, the task is to find the length of the Longest Increasing Subsequence (LIS) i.e., the longest possible subsequence in which the elements of the subsequence are sorted in increasing order. Examples: Input: arr[] = [3, 10, 2, 1, 20]Output: 3Explanation: The longest incre
14 min read
Longest subsequence such that difference between adjacents is one
Given an array arr[] of size n, the task is to find the longest subsequence such that the absolute difference between adjacent elements is 1. Examples: Input: arr[] = [10, 9, 4, 5, 4, 8, 6]Output: 3Explanation: The three possible subsequences of length 3 are [10, 9, 8], [4, 5, 4], and [4, 5, 6], whe
15+ min read
Maximum size square sub-matrix with all 1s
Given a binary matrix mat of size n * m, the task is to find out the maximum length of a side of a square sub-matrix with all 1s. Example: Input: mat = [ [0, 1, 1, 0, 1], [1, 1, 0, 1, 0], [0, 1, 1, 1, 0], [1, 1, 1, 1, 0], [1, 1, 1, 1, 1], [0, 0, 0, 0, 0] ] Output: 3Explanation: The maximum length of
15+ min read
Min Cost Path
You are given a 2D matrix cost[][] of dimensions m à n, where each cell represents the cost of traversing through that position. Your goal is to determine the minimum cost required to reach the bottom-right cell (m-1, n-1) starting from the top-left cell (0,0).The total cost of a path is the sum of
15+ min read
Longest Common Substring (Space optimized DP solution)
Given two strings âs1â and âs2â, find the length of the longest common substring. Example: Input: s1 = âGeeksforGeeksâ, s2 = âGeeksQuizâ Output : 5 Explanation:The longest common substring is âGeeksâ and is of length 5. Input: s1 = âabcdxyzâ, s2 = âxyzabcdâ Output : 4Explanation:The longest common s
7 min read
Count ways to reach the nth stair using step 1, 2 or 3
A child is running up a staircase with n steps and can hop either 1 step, 2 steps, or 3 steps at a time. The task is to implement a method to count how many possible ways the child can run up the stairs. Examples: Input: 4Output: 7Explanation: There are seven ways: {1, 1, 1, 1}, {1, 2, 1}, {2, 1, 1}
15+ min read
Grid Unique Paths - Count Paths in matrix
Given an matrix of size m x n, the task is to find the count of all unique possible paths from top left to the bottom right with the constraints that from each cell we can either move only to the right or down. Examples: Input: m = 2, n = 2Output: 2Explanation: There are two paths(0, 0) -> (0, 1)
15+ min read
Unique paths in a Grid with Obstacles
Given a grid[][] of size m * n, let us assume we are starting at (1, 1) and our goal is to reach (m, n). At any instance, if we are on (x, y), we can either go to (x, y + 1) or (x + 1, y). The task is to find the number of unique paths if some obstacles are added to the grid.Note: An obstacle and sp
15+ min read
Medium problems on Dynamic programming
0/1 Knapsack Problem
Given n items where each item has some weight and profit associated with it and also given a bag with capacity W, [i.e., the bag can hold at most W weight in it]. The task is to put the items into the bag such that the sum of profits associated with them is the maximum possible. Note: The constraint
15+ min read
Printing Items in 0/1 Knapsack
Given weights and values of n items, put these items in a knapsack of capacity W to get the maximum total value in the knapsack. In other words, given two integer arrays, val[0..n-1] and wt[0..n-1] represent values and weights associated with n items respectively. Also given an integer W which repre
12 min read
Unbounded Knapsack (Repetition of items allowed)
Given a knapsack weight, say capacity and a set of n items with certain value vali and weight wti, The task is to fill the knapsack in such a way that we can get the maximum profit. This is different from the classical Knapsack problem, here we are allowed to use an unlimited number of instances of
15+ min read
Egg Dropping Puzzle | DP-11
You are given n identical eggs and you have access to a k-floored building from 1 to k. There exists a floor f where 0 <= f <= k such that any egg dropped from a floor higher than f will break, and any egg dropped from or below floor f will not break. There are a few rules given below: An egg
15+ min read
Word Break
Given a string s and y a dictionary of n words dictionary, check if s can be segmented into a sequence of valid words from the dictionary, separated by spaces. Examples: Input: s = "ilike", dictionary[] = ["i", "like", "gfg"]Output: trueExplanation: The string can be segmented as "i like". Input: s
12 min read
Vertex Cover Problem (Dynamic Programming Solution for Tree)
A vertex cover of an undirected graph is a subset of its vertices such that for every edge (u, v) of the graph, either âuâ or âvâ is in vertex cover. Although the name is Vertex Cover, the set covers all edges of the given graph. The problem to find minimum size vertex cover of a graph is NP complet
15+ min read
Tile Stacking Problem
Given integers n (the height of the tower), m (the maximum size of tiles available), and k (the maximum number of times each tile size can be used), the task is to calculate the number of distinct stable towers of height n that can be built. Note: A stable tower consists of exactly n tiles, each sta
15+ min read
Box Stacking Problem
Given three arrays height[], width[], and length[] of size n, where height[i], width[i], and length[i] represent the dimensions of a box. The task is to create a stack of boxes that is as tall as possible, but we can only stack a box on top of another box if the dimensions of the 2-D base of the low
15+ min read
Partition a Set into Two Subsets of Equal Sum
Given an array arr[], the task is to check if it can be partitioned into two parts such that the sum of elements in both parts is the same.Note: Each element is present in either the first subset or the second subset, but not in both. Examples: Input: arr[] = [1, 5, 11, 5]Output: true Explanation: T
15+ min read
Travelling Salesman Problem using Dynamic Programming
Given a 2d matrix cost[][] of size n where cost[i][j] denotes the cost of moving from city i to city j. The task is to complete a tour from city 0 (0-based index) to all other cities such that we visit each city exactly once and then at the end come back to city 0 at minimum cost. Note the differenc
15 min read
Longest Palindromic Subsequence (LPS)
Given a string s, find the length of the Longest Palindromic Subsequence in it. Note: The Longest Palindromic Subsequence (LPS) is the maximum-length subsequence of a given string that is also a Palindrome. Examples: Input: s = "bbabcbcab"Output: 7Explanation: Subsequence "babcbab" is the longest su
15+ min read
Longest Common Increasing Subsequence (LCS + LIS)
Given two arrays, a[] and b[], find the length of the longest common increasing subsequence(LCIS). LCIS refers to a subsequence that is present in both arrays and strictly increases.Prerequisites: LCS, LIS. Examples: Input: a[] = [3, 4, 9, 1], b[] = [5, 3, 8, 9, 10, 2, 1]Output: 2Explanation: The lo
15+ min read
Find all distinct subset (or subsequence) sums of an array
Given an array arr[] of size n, the task is to find a distinct sum that can be generated from the subsets of the given sets and return them in increasing order. It is given that the sum of array elements is small. Examples: Input: arr[] = [1, 2]Output: [0, 1, 2, 3]Explanation: Four distinct sums can
15+ min read
Weighted Job Scheduling
Given a 2D array jobs[][] of order n*3, where each element jobs[i] defines start time, end time, and the profit associated with the job. The task is to find the maximum profit you can take such that there are no two jobs with overlapping time ranges. Note: If the job ends at time X, it is allowed to
15+ min read
Count Derangements (Permutation such that no element appears in its original position)
A Derangement is a permutation of n elements, such that no element appears in its original position. For example, a derangement of [0, 1, 2, 3] is [2, 3, 1, 0].Given a number n, find the total number of Derangements of a set of n elements. Examples : Input: n = 2Output: 1Explanation: For two balls [
12 min read
Minimum insertions to form a palindrome
Given string str, the task is to find the minimum number of characters to be inserted to convert it to a palindrome. Examples: Input: str = abcdOutput: 3Explanation: Here we can append 3 characters in the beginning, and the resultant string will be a palindrome ("dcbabcd"). Input: str = abaOutput: 0
15+ min read
Ways to arrange Balls such that adjacent balls are of different types
There are 'p' balls of type P, 'q' balls of type Q and 'r' balls of type R. Using the balls we want to create a straight line such that no two balls of the same type are adjacent.Examples : Input: p = 1, q = 1, r = 0Output: 2Explanation: There are only two arrangements PQ and QP Input: p = 1, q = 1,
15+ min read