Mathematics
Mathematics, 19.05.2021 18:30, chloelandry

In this game, there is a stack of n bricks. The ith brick in the stack is worth v[i] points (where v[0] is the value of the top brick). The players take turns removing either 1, 2, 3 or 4 bricks from the top of the stack. The player that removes a brick earns the number of points associated with the brick. The game ends when all the bricks have been removed, and the winner is the player who has earned the most points. For example, if v = [1, 1, 3, 4] and Smoov is the first player to move, then Smoov's optimal strategy is to take just the first brick (earning 1 point). Curly's optimal strategy is then to take the next two bricks (earning 4 points). Smoov then finishes by taking the last brick (earning 4 more points). Therefore, the maximum score Smoov can earn is 5. Assume that Smoov takes the first turn and that both Smoov and Curly play optimally. Given the list v of the values of the bricks (all integers greaterthanorequalto 0), output the maximum score Smoov can earn. (a) Define the subproblems to be solved in English. Solution: Let s_i denote the optimum score for whoever's turn it is when v_i is the top remaining brick. The subproblems are to compute s_i for each i from n - 1 to 0. (b) Define an appropriate recurrence for the subproblems. Solution: s_i = {0, i greaterthanorequalto n v[i] + max (min(s_i+2, s_i+3), v[i + 1] + min(s_i+3, s_i+4)), i < n For the particular input v = [1, 2, 0, 8, 0, 3, 3, 2], compute s_i for 0 lessthanorequalto i lessthanorequalto 7.

answer
Answers: 3

Other questions on the subject: Mathematics

image
Mathematics, 21.06.2019 17:30, corinaartsy
Match each function with its rate of growth or decay
Answers: 1
image
Mathematics, 21.06.2019 19:00, daisyperez1
1) what is the measure of the exterior angle, ∠uvw ? 2) in triangle man, what is the measure of the exterior angle at n (in degrees)?
Answers: 1
image
Mathematics, 21.06.2019 19:40, kajtazi1157
In angle pqr find the measure of
Answers: 1
image
Mathematics, 21.06.2019 21:30, brittanysanders
Lizette is training for a marathon. at 7: 00 she left her house and ran until 8: 30, then she walked until 11: 30. she covered a total distance of 18 miles. her running speed was six miles per hour faster than her walking speed. find her running and walking speeds in miles per hour.
Answers: 2
Do you know the correct answer?
In this game, there is a stack of n bricks. The ith brick in the stack is worth v[i] points (where v...

Questions in other subjects:

Konu
Mathematics, 20.01.2021 17:40
Konu
Mathematics, 20.01.2021 17:40
Konu
Mathematics, 20.01.2021 17:40
Konu
Biology, 20.01.2021 17:40
Konu
Mathematics, 20.01.2021 17:40