IOI '96 - Veszprém, Hungary
Consider the following two-player game played with a sequence of positive integers laid onto a game board. Player starts the game. The players move alternately by selecting a number from either the left or the right end of the sequence. That number is then deleted from the board, and its value is added to the score of the player who selected it. A player wins if his sum is greater than his opponents.
Write a program that implements the optimal strategy. The optimal strategy yields maximum points when playing against the "best possible" opponent. Your program must further implement an optimal strategy for player .
Input Specification
Line will contain the integer , the size of the board. The following line(s) will contain integers between and inclusive that are the contents of the game board, from left to right.
Output Specification
Two space-separated integers on a line: the score of player followed by the score of player .
Sample Input
6
4 7 2 9 5 2
Sample Output
18 11
Comments
Note that it seems that the board is not guaranteed to be inputted on one line and may be a few lines long