Problem Description
Alice and Bob play a game with stones arranged in a row, each with an associated integer value. Alice divides the stones into two non-empty rows, Bob discards the row with the maximum value, and Alice's score increases by the value of the remaining row. The game continues until only one stone remains. Return the maximum score that Alice can obtain.
Key Insights
- Alice must strategically divide the stones to maximize her score.
- The game is essentially a dynamic programming problem where each state depends on previous states.
- The value of a row can be computed using prefix sums for efficient calculation.
- Handling ties in row values gives Alice the advantage of choosing which row to discard.
Space and Time Complexity
Time Complexity: O(n^2)
Space Complexity: O(n)
Solution
We can approach this problem using dynamic programming. We will use a 2D DP array where dp[i][j]
represents the maximum score Alice can achieve from the subarray of stones from index i
to j
. We also need a prefix sum array to quickly calculate the sum of any subarray. For each possible division point between i
and j
, we calculate the scores based on Bob's discard strategy and update the DP table accordingly.