Answered step by step
Verified Expert Solution
Question
1 Approved Answer
2.3 EXPAND Consider the Subset Sum problem from lecture. You will modify the solution to this problem to work for a related problem. In the
2.3 EXPAND Consider the Subset Sum problem from lecture. You will modify the solution to this problem to work for a related problem. In the modified problem we will count the number of different subsets that sum to our target number. 1. (2 point) Express the modified problem formally with input and output conditions 2. (4 points) State a self-reduction for your problem. 3. (4 points) State a dynamic programming algorithm based off of your self reduction that computes the number of subsets that sum to our target number 4. (4 points) Design a function that recovers every subset that sums to our target number. Hint: Recursion will be helpful.) (2 point) Use your algorithm to compute and recover every subset that sums to the target number t = 6 for the multiset S. 5. 6. (4 points) What are the worst case time and space requirements of your complete solution? 2.3 EXPAND Consider the Subset Sum problem from lecture. You will modify the solution to this problem to work for a related problem. In the modified problem we will count the number of different subsets that sum to our target number. 1. (2 point) Express the modified problem formally with input and output conditions 2. (4 points) State a self-reduction for your problem. 3. (4 points) State a dynamic programming algorithm based off of your self reduction that computes the number of subsets that sum to our target number 4. (4 points) Design a function that recovers every subset that sums to our target number. Hint: Recursion will be helpful.) (2 point) Use your algorithm to compute and recover every subset that sums to the target number t = 6 for the multiset S. 5. 6. (4 points) What are the worst case time and space requirements of your complete solution
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started