Chapter 6: Q24E (page 196)
Time and space complexity of dynamic programming. Our dynamic programming algorithm for computing the edit distance between strings of length m and n creates a table of size and therefore needs O (mn) time and space. In practice, it will run out of space long before it runs out of time. How can this space requirement be reduced?
- Show that if we just want to compute the value of the edit distance (rather than the optimal sequence of edits), then only O(n) space is needed, because only a small portion of the table needs to be maintained at any given time.
- Now suppose that we also want the optimal sequence of edits. As we saw earlier, this problem can be recast in terms of a corresponding grid-shaped dag, in which the goal is to find the optimal path from node (0,0) to node (n,m). It will be convenient to work with this formulation, and while we’re talking about convenience, we might as well also assume that is a power of 2.
Let’s start with a small addition to the edit distance algorithm that will turn out to be very useful. The optimal path in the dag must pass through an intermediate node for some k; show how the algorithm can be modified to also return this value k. - Now consider a recursive scheme:
Procedure find-path
Compute the value kabove
find-path
find-path
concatenate these two paths, with kin the middle.
Show that this scheme can be made to run inO (mn) time and O(n) space.
Short Answer
This space can be reduced by calculating the values of the adjacent cells in the table and the space complexity will be reduced to O(n).
- By considering the value of the adjacent square, the edit distance value can be computed in the given space complexity.
- Yes, the algorithm can be modified as follows,
this scheme can be made to run in O(mn) time and O(n) space. - The given scheme can be made to run in O(mn) time and O(n) space because of the size and the difficulty of the algorithm.