Chapter 6: Q9E (page 193)
A certain string-processing language offers a primitive operation which splits a string into two pieces. Since this operation involves copying the original string, it takes n units of time for a string of length n, regardless of the location of the cut. Suppose, now, that you want to break a string into many pieces. The order in which the breaks are made can affect the total running time. For example, if you want to cut a 20-character string at positions 3 and 10, then making the first cut at position 3 incurs a total cost of 20+17=37, while doing position first has a better cost of 20+17=37.
Give a dynamic programming algorithm that, given the locations of m cuts in a string of length , finds the minimum cost of breaking the string into m +1 pieces.
Short Answer
It is given in the question, that the primitive operation will take time for copying the original string of length ‘n’. Hence, the cost of complete algorithm will be greater then .
To get minimum cost of breaking the string, we will use dynamic programming algorithm and define our recursion relation which will be our subproblem.