68.5k views
2 votes
Suppose that you are given an n x n checkerboard and a checker. You must move the checker from the bottom edge of the board to the top edge of the board according to the following rule. At each step you may move the checker to one of three squares:

a) the square immediately above,

b) the square that is one up and one to the left (but only if the checker is not already in the leftmost column),

c) the square that is one up and one to the right (but only if the checker is not already in the rightmost column).

Each time you move from square x to square y, you receive p(x, y) dollars. You are given p(x, y) for all pairs (x, y) for which a move from x to y is legal. Do not assume that p(x, y) is positive.

Given an algorithm that figures out the set of moves that will move the checker from somewhere along the bottom edge to somewhere along the top edge while gathering as many dollars as possible.

Your algorithm is free to pick any square along the bottom edge as a starting point and any square along the top edge as a destination in order to maximize the number of dollars gathered along the way.

What is the running time of your algorithm?

1 Answer

6 votes

Answer:

Hey Jasmine

the answer resides in the explanation part

Step-by-step explanation:

Please see the attachments :)

Pls rate me good

Suppose that you are given an n x n checkerboard and a checker. You must move the-example-1
Suppose that you are given an n x n checkerboard and a checker. You must move the-example-2
Suppose that you are given an n x n checkerboard and a checker. You must move the-example-3
User MrHetii
by
5.7k points