Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

b) (10 pts) Give an algorithm that solves this problem. You may use/modify/refer to the pseudocode for Knapsack from the lecture notes (below). 4. Consider

image text in transcribed

b) (10 pts) Give an algorithm that solves this problem. You may use/modify/refer to the pseudocode for Knapsack from the lecture notes (below).

image text in transcribedimage text in transcribedimage text in transcribedimage text in transcribed

4. Consider the following variant of string alignment: given two strings x, y, and a positive integer L, find all contiguous substrings of length at least L that are aligned (using no-ops-substituting a letter for itself) in some optimal alignment of z and y. Assume the costs of substitution, insertion, and deletion are given by constants Csubs, Cins, Cdel, and that the cost of substituting a letter for itself is zero (a) (2 pts) Show that the output here contains at most O((n - L)*) substrings. 1.2 The 0-1 Knapsack problem Another problem that is amenable to the dynamic programming approach is the 0-1 Knapsack problem. In this problem, you are faced with a set of n indivisible items S, where each item s has both a value vi and a weight wi. Your task is to select a subset of items T C S such that the total value of the items eTV s maximized and the total weight of the items does not exceed a threshold W, i.e., E7% W A brute force approach to solving this problem would consider all 2" possible choices, in which for each of the n items, we either try to include it or exclude it, and then evaluate whether this particular set of choices satisfies our weight limit W and maximizes the total value. This approach is infeasible for any reasonable value of n, and besides, there is a much more efficient approach A simple example: Suppose we are given a capacity of W = 20, and five items with the following weights and values: {(2, 3), (3, 4), (4,5), (5,8), (9,10)), which we can arrange in a table like this, where the two right-most columns give two different greedy solutions in binary (a 1 indicates the item is taken, and a 0 that the item is not): item i weight w; value v; greedyl greedy2 optimal 4 0 0 10 A first greedy approach ("greedyl" above) would be to first sort items in decreasing order of their value vi, iterate down the list, and add each item so long as doing so does not cause our total weight to exceed our capacity. This approach takes items 5 and 4 (in that order), for total value 19 and total weight of 18. A second greedy approach ("greedy2" above) would be first sort items in decreasing order of value- to-weight ratio vi/wi, and then again proceed down the list, filling up the bag until no remaining item is small enough to fit. This approach takes items 2, 1 and 5 (in that order), for total value 22 and total weight of 17, a better solution. But the optimal choice ("optimal" above) is to take items 1, 2, 3 and 4, for total value 24 and total weight of 20. To be a correct solution for the 0-1 Knapsack problem, an algorithm must succeed on all inputs. The example input above is a proof by counter-example showing that both reedy approaches are not correct. Dynamic programming, however, is a correct algorithm for 0-1 Knapsack. 1.3 The algorithm To develop a dynamic programming solution, we need to understand how to exploit the substruc- ture to build up an optimal solution. That is, how can we break a current problem down into simple decisions that combine the optimal solutions to subproblems to produce an optimal solution for the current problem? Or, suppose we have an optimal solution to a 0-1 Knapsack problem with in items and W capacity. How could we extend this solution to be an optimal solution for a problem with n +1 items or with W +1 capacity? This question presents a key insight: every choice of k e [0,n] and capacity w E [0, W] is a subprob- lem for parameters n and W. The parameter k lets us vary how many fewer items we consider, and the parameter w lets us vary how much smaller capacity bag to consider (Crucially, both param eters are necessary. At home exercise: prove that an approach using only k will fail on some inputs Suppose we have already computed the optimal solution for some particular value of k - 1 and for all values 0 w, then our bag is too small to include the kth item, regardless of what subproblem we might build off of. (Take it) If our bag is large enough, i.e., uk-u, the optimal value is this item's value uk plus the optimal value for the subproblem on k items and weight w - wk, i.e., a bag with just enough extra capacity to hold item k. . (Leave it) If our bag is large enough, i.e., wk-w, the optimal solution on k-1 items for capacity w. We can take these three possibilities and write them down as a simple recursive expression that gives the optimal solution for k items and capacity w, which we denote B(k, w), in terms of optimal solutions to smaller problems B(k-1, w) m ax( B(k-1, w) , if wk > uw otherwise B(k-1, w _ wk) + Uk ) The upper branch governs the "No room" condition, while the lower branch covers "Take it" and "Leave it" conditions. Crucially, because we want the optimal value for B (k,w), we take the larger value of the two possibilities where we could take the item As with the path counting problem, the recursive formula immediately implies a memoization scheme by which to store the optimal solutions for the (k, w) subproblems. Here, we use a table B with n rows and W +1 columns. Because our formula for B(k, w) only ever refers to subproblems on the k - 1 row, we may fill in this table one row at a time. Here is pseudocode: for w- 0 to W 1 B[O,w] - 0 // base case: no items for k = 1 to n { B[k,0] = 0 } // base case: no capacity for k - 1 to n f for w-0 to W if w[k] w, then our bag is too small to include the kth item, regardless of what subproblem we might build off of. (Take it) If our bag is large enough, i.e., uk-u, the optimal value is this item's value uk plus the optimal value for the subproblem on k items and weight w - wk, i.e., a bag with just enough extra capacity to hold item k. . (Leave it) If our bag is large enough, i.e., wk-w, the optimal solution on k-1 items for capacity w. We can take these three possibilities and write them down as a simple recursive expression that gives the optimal solution for k items and capacity w, which we denote B(k, w), in terms of optimal solutions to smaller problems B(k-1, w) m ax( B(k-1, w) , if wk > uw otherwise B(k-1, w _ wk) + Uk ) The upper branch governs the "No room" condition, while the lower branch covers "Take it" and "Leave it" conditions. Crucially, because we want the optimal value for B (k,w), we take the larger value of the two possibilities where we could take the item As with the path counting problem, the recursive formula immediately implies a memoization scheme by which to store the optimal solutions for the (k, w) subproblems. Here, we use a table B with n rows and W +1 columns. Because our formula for B(k, w) only ever refers to subproblems on the k - 1 row, we may fill in this table one row at a time. Here is pseudocode: for w- 0 to W 1 B[O,w] - 0 // base case: no items for k = 1 to n { B[k,0] = 0 } // base case: no capacity for k - 1 to n f for w-0 to W if w[k]

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Guide To Client Server Databases

Authors: Joe Salemi

2nd Edition

1562763105, 978-1562763107

More Books

Students also viewed these Databases questions

Question

Provide two definitions of DSS.

Answered: 1 week ago

Question

Should Loftus Ranches invest in the Bale Breaker Brewery and why?

Answered: 1 week ago