


a) Both players play in alternate turns and they can remove only one coin in their turn.
b) Any player can remove coins only from either of the two ends of ‘ARR’.
There can be more than one set of coins with maximum value.
a) Consider 3 coins are placed with values [10, 20, 30]: Wong removes 30, then Strange removes 20, then Wong removes 10. Now all coins are taken, and Wong has coins with value 40 and he wins.
b) Consider 1 coin is placed with value [100]: Wong removes the coin and no other coin is left. So, Wong wins with value 100.
a) The game only ends when NO MORE COIN IS LEFT to play with.
b) If a game ends in a draw, Wong is declared the winner.
The first line of input contains an integer 'T', which denotes the number of the test cases. Then the test case follows.
The first line of every test case contains an integer ‘N’ representing the size of the array.
The second line of every test case contains ‘N’ single space-separated integers representing the array elements.
For each test case, print a single integer representing the maximum value of coins you can get for a winning case.
Print the output of each test case in a separate line.
You do not need to print anything; it has already been taken care of. Just implement the given function.
1 <= T <= 5
1 <= N <= 10 ^ 3
1 <= ARR[i] <= 10 ^ 7
Where ‘ARR[ i ]’ denotes the value for ‘ith’ element of the array ‘ARR’.
Time Limit: 1 sec.
The idea is to check each element from the array ‘ARR’ recursively whether including it in the result will give us the maximum sum or not.
First, we will define a recursive function, say ‘MAXCOINS’ that accepts as parameters, an array of integers ‘ARR’, iterator pointer ‘STARTINDEX’ which will iterate throughout the ‘ARR’, iterator pointer ‘ENDINDEX’ which will iterate from the last element of ‘ARR’ till ‘STARTINDEX’ + 1 and ‘SUM’ which will contain the sum of the values of ‘ARR’ and do:
We can reduce the steps involved in the recursive approach by storing the result for every solved subproblem. We will define a function ‘MAXCOINS’ that accepts parameters, an array of integers ‘ARR’, iterator pointer ‘STARTINDEX’ which will iterate throughout the ‘ARR’, iterator pointer ‘ENDINDEX’ which will iterate from the last element of ‘ARR’ till ‘STARINDEX’ + 1 , 2D array of integers initialised to -1, say ‘MEMO’ and an integer ‘SUM’ that contains the sum of all values in ‘ARR’.
From the figure we can see the recursion tree for array ‘COINS’ = [5, 1, 3, 2, 4].
In the first level of the recursion tree - On the left side, Wong takes the coin with value 5 and Stranger left with the array [1, 3, 2, 4]. On the right side, Wong takes the coin with value 4 and Stranger left with the array [5, 1, 3, 2, 4].
In the next level of the recursion tree - Stranger takes the coin with largest value from both the ends and hence, Wong left with the array [1,3, 2].
We can see the recurring subproblems marked with a circle.
Both Wong and Dr Strange are equally good. So, both of them will try to choose the best option available to them. Consider ‘ith’ and ‘jth’ coins are available to be drawn. This leaves them with two choices:
Wong chooses the ‘ith’ coin with let’s say with the value ‘Vi’: Then Dr Strange can either choose (i+1)th coin or ‘jth’ coin in a way that he leaves Wong with minimum value.
That means Wong can collect the value ‘Vi’ + minimum from (‘MAXCOINS(i+2, j)’, ‘MAXCOINS(i+1, j-1)’).
Wong chooses the ‘jth’ coin with value ‘Vj’: Then Dr Strange can either choose 'ith' coin or '(j-1) th' coin in a way that leaves Wong with minimum value.
That means Wong can collect the value ‘Vj’ + minimum value from (‘MAXCOINS(i+1, j-1)’, ‘MAXCOINS(i, j-2)’).
Now, if we consider ‘MAXCOINS(i,j)’ representing the maximum value Wong can collect from ‘ith’ coin to ‘jth’ coin, then:
‘MAXCOINS(i, j)’ = maximum(‘Vi’ + minimum (‘MAXCOINS(i+2, j)’, ‘MAXCOINS(i+1, j-1)’ ), minimum (‘MAXCOINS(i+1, j-1)’, ‘MAXCOINS(i, j-2)’ ) )
where, ‘MAXCOINS(i, j)’ = ‘Vi’, when ‘j’ = ‘i’ i.e. only one coin is left or ‘MAXCOINS(i, j)’ = maximum(‘Vi’, ‘Vj’) when ‘j’ = ‘i’ + 1 i.e. only two coins left.
We can implement this using dynamic programming. We define a function that accepts as parameters, an array of integers ‘ARR’ and an integer ‘N’ representing length of ‘ARR’.