(Dynamic Programming, Coin-row problem) There is a row of n coins whose values are some positive integers c,. C2..., Cn, not necessarily distinct. The goal is to pick up the maximum amount of money subject to the constraint that no two coins adjacent in the initial row can be picked up. The recurrence of the coin-row problem is given below. F (n) = max{c, + F (n – 2), F(n – 1)} for n > 1, F (0) = 0. F(1) = c1. Solve the instance 7, 2, 5, 12, 5 of the coin-row problem using the recurrence given above. use the recurrence relation. Write your results to the table below. Index 1 4 7 2 12 5 F i = 1 F[1] i = 2 F[2] i = 3 F[3] i= 4 F[4] i = 5 F[5] = Trace back from the table above to find the optimal solution set. use the table you found above. Write a pseudocode to find the optimal solution set. Algorithm OptCoinSubset(C[1..n], F[0..n]) //Finds the optimal subset by tracing back from the solution table. //Input: Arrays C[1 ..n] and F[0 ..n]of coin values and optimal solution table of n coins, //Output:S is the set of items whose sum is the optimal value. en n

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
(Dynamic Programming, Coin-row problem)
There is a row of n coins whose values are some positive integers c,. c2,. Cn, not necessarily distinct. The
goal is to pick up the maximum amount of money subject to the constraint that no two coins adjacent in the
initial row can be picked up. The recurrence of the coin-row problem is given below.
F(n) = max{c, + F (n – 2), F(n – 1)} for n > 1,
F (0) = 0,
F(1) = c1.
Solve the instance 7, 2, 5, 12, 5 of the coin-row problem using the recurrence given above.
use the recurrence relation. Write your results to the table below.
Index
1
2
3
4
C
7
2
5
12
5
F
i = 1
F[1]
i = 2
F[2]
i = 3
F[3] =
i = 4
F[4] =
i = 5
F[5] =
Trace back from the table above to find the optimal solution set.
use the table you found above.
Write a pseudocode to find the optimal solution set.
Algorithm OptCoinSubset(C[1..n], F[0..n])
//Finds the optimal subset by tracing back from the solution table.
//Input: Arrays C[1 ..n] and F[0..n]of coin values and optimal solution table of n coins,
//Output:S is the set of items whose sum is the optimal value.
Transcribed Image Text:(Dynamic Programming, Coin-row problem) There is a row of n coins whose values are some positive integers c,. c2,. Cn, not necessarily distinct. The goal is to pick up the maximum amount of money subject to the constraint that no two coins adjacent in the initial row can be picked up. The recurrence of the coin-row problem is given below. F(n) = max{c, + F (n – 2), F(n – 1)} for n > 1, F (0) = 0, F(1) = c1. Solve the instance 7, 2, 5, 12, 5 of the coin-row problem using the recurrence given above. use the recurrence relation. Write your results to the table below. Index 1 2 3 4 C 7 2 5 12 5 F i = 1 F[1] i = 2 F[2] i = 3 F[3] = i = 4 F[4] = i = 5 F[5] = Trace back from the table above to find the optimal solution set. use the table you found above. Write a pseudocode to find the optimal solution set. Algorithm OptCoinSubset(C[1..n], F[0..n]) //Finds the optimal subset by tracing back from the solution table. //Input: Arrays C[1 ..n] and F[0..n]of coin values and optimal solution table of n coins, //Output:S is the set of items whose sum is the optimal value.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY