State Space Reduction in Dynamic Programming

Learn via video course
FREE
View all courses
DSA Problem Solving for Interviews using Java
DSA Problem Solving for Interviews using Java
by Jitender Punia
1000
4.9
Start Learning
DSA Problem Solving for Interviews using Java
DSA Problem Solving for Interviews using Java
by Jitender Punia
1000
4.9
Start Learning
Topics Covered

Overview

State space reduction is the process that is used to decrease the number of states in a dynamic programming solution in an optimal way. It is specific to a given problem and usually involves reducing the size of its dimensions by a constant value.

Takeaways

The primary principle of dynamic programming is to prevent repetitive effort by remembering partial outcomes, and this approach is used in a variety of real-world scenarios.

Introduction

Ever played the Memory Train game? The rules are pretty simple. You say a word and the next person adds another word to yours, and the next to that queue. For example, consider the following image. A says the word 'The' to B. B adds 'Brown' and thus tells C 'The Brown'. Similarly each child adds a word to the existing queue.

state space reduction dymanic programming introduction

Dynamic programming follows a similar logic. In dynamic programming, we divide a problem into overlapping sub-problems and work our way up to larger and larger sub-problems. In such circumstances, you discover that there are some overlapping sub-problems and then preserve the result so that it may be utilized later in the event of overlapping.

Assume we have a machine, and we have some quantities known as state variables that we may use to identify its state at time t. There will be moments when we must make a decision that impacts the condition of the system, which we may or may not be aware of in advance. These decisions or adjustments are similar to state variable transformations.

The primary principle of Dynamic Programming is to prevent repetitive effort by remembering partial outcomes, and this approach is used in a variety of real-world scenarios. State space reduction is used to improve the space and time complexity of dynamic programming.

Reducing the Number of States

There are several techniques to limit the number of states in a dynamic programming solution. One approach is to try to lower the size of one of the current dimensions. The total time complexity of the solution remains the same when the size is lowered by some amount, but the constant factor improves. The most substantial gain can be obtained by totally eliminating a dimension or lowering its size to a tiny constant.

The exact approach of shrinking the state space varies depending on the task. There is no universal solution that can be applied to all issues. However, one general idea worth mentioning is that the number of dimensions can be reduced if there are some dimensions capturing the same information, or if there is a dimension capturing irrelevant information. The best way to gain intuitions for such ideas to enhance existing dynamic programming solutions is to read more and more combat stories.

Problem

Let's consider the simple scenario of calculating binomial coefficients. A binomial coefficent C(n,k) gives number of ways in which k objects can be chosen from a set of n objects, irrespective of the order. A binomial coefficient C(n, k) can be defined as the coefficient of x^k in the expansion of (1 + x)^n.

For this problem, we wil have to create a function with 2 parameters n and k that returns the value of Binomial Coefficient C(n,k).

The formula of Binomial Coefficient is as given below:

state space reduction dynamic programming problem

For example, if n=5 and k=3, the function should return a 10.

Initial Solution

When you talk about Binomial Coefficient, the first solution that runs through your mind is that of recursion. If we were to use recursion, the function will calculate binomial coefficient as follows:

C(n, k) = C(n-1, k-1) + C(n-1, k)
C(n, 0) = C(n, n) = 1

We would write the function in C++ as:

Here, both the time and space complexity depend heavily on the values of k and n and can be given by: Time Complexity: O(n * max(k,n-k)) Space Complexty: O(n * max(k,n-k))

Solution using Dynamic Programming

If you draw a recursion tree for the code shown above, you will realize that there is a redundancy in subproblems. Whenever there are overlapping subproblems like this, we can use Dynamic Programming to increase the efficiency.

state space reduction dynamic programming solution

Recomputations of the same problem are avoided in Dynamic Programming by employing a 2D array in a bottom-up fashion. However, the time and space complexity does not differ significantly in either situation.

If you were to write a function for the same purpose, you would write it like follows:

Here, Time Complexity: O(n* k) Space Complexity: O(n* k)

Improving the initial solution by reducing the state space

We may use a 1D array instead of a 2D array to further limit the auxiliary space. This dimension reduction allows us to shrink the state space by a whole dimension.

A Pascal triangle can be used to implement a 1D array to solve this. Consider an i-row pascal triangle. Each row builds on the one before it, i.e. the (i-1)th row.

C[i]=C[i]+C[i-1]

The calculation in this scenario takes place as follows:

state space reduction dynamic programming calculation

The right-hand side indicates the value from the previous iteration (each row of Pascal's triangle is dependent on the row before it). The value of the current iteration obtained by this statement is represented on the left-hand side.

Let's say we want to calculate C(3, 2), i.e. n=3, k=2:

All elements of array C are initialized to ZERO.

i.e. C[0] = C[1] = C[2] = C[3] = C[4] = 0; Then C[0] is set to 1

For i = 1: C[1] = C[1] + C[0] = 0 + 1 = 1 ==>> C(1,1) = 1

For i = 2: C[2] = C[2] + C[1] = 0 + 1 = 1 ==>> C(2,2) = 1 C[1] = C[1] + C[0] = 1 + 1 = 2 ==>> C(2,1) = 2

For i=3: C[3] = C[3] + C[2] = 0 + 1 = 1 ==>> C(3,3) = 1 C[2] = C[2] + C[1] = 1 + 2 = 3 ==>> C(3,2) = 3

C(3,2) = 2 is the answer.

To implement the above solution, consider the following code:

Here, Time Complexity: O(n * k) Space Complexity: O(k)

This is simply one solution to the problem. There are other more approaches inside dynamic programming that can assist us in achieving the best possible result.

Conclusion

  • The primary principle of dynamic Programming is to prevent repetitive effort by remembering partial outcomes, and this approach is used in a variety of real-world scenarios.
  • The complexity of dynamic programming is reduced by reducing state space.
  • There are various methods for limiting the number of states in a dynamic programming solution, but none is universal.
  • The most popular method is to try to reduce the size of one of the existing dimensions. When the size is reduced by a factor of, the overall time complexity of the solution remains the same, but the constant factor improves.