7556: [CSES Problem Set] Removal Game
[Creator : ]
Description
There is a list of $n$ numbers and two players who move alternately. On each move, a player removes either the first or last number from the list, and their score increases by that number. Both players try to maximize their scores.
What is the maximum possible score for the first player when both players play optimally?
What is the maximum possible score for the first pla
Input
The first input line contains an integer $n$: the size of the list.
The next line has $n$ integers $x_1,x_2,\ldots,x_n$: the contents of the list.
The next line has $n$ integers $x_1,x_2,\ldots,x_n$: the contents of the list.
Output
Print the maximum possible score for the first player.
Constraints
$1≤n≤5000$
$-10^9 \le x_i \le 10^9$
$-10^9 \le x_i \le 10^9$
Sample 1 Input
4
4 5 1 3
Sample 1 Output
8