Stone Game V

There are several stones arranged in a row, and each stone has an associated value which is an integer given in the array stoneValue.

In each round of the game, Alice divides the row into two non-empty rows (i.e. left row and right row), then Bob calculates the value of each row which is the sum of the values of all the stones in this row. Bob throws away the row which has the maximum value, and Alice's score increases by the value of the remaining row. If the value of the two rows are equal, Bob lets Alice decide which row will be thrown away. The next round starts with the remaining row.

The game ends when there is only one stone remaining. Alice's is initially zero.

Return the maximum score that Alice can obtain.

 

Example 1:

Input: stoneValue = [6,2,3,4,5,5]
Output: 18
Explanation: In the first round, Alice divides the row to [6,2,3], [4,5,5]. The left row has the value 11 and the right row has value 14. Bob throws away the right row and Alice's score is now 11.
In the second round Alice divides the row to [6], [2,3]. This time Bob throws away the left row and Alice's score becomes 16 (11 + 5).
The last round Alice has only one choice to divide the row which is [2], [3]. Bob throws away the right row and Alice's score is now 18 (16 + 2). The game ends because only one stone is remaining in the row.

Example 2:

Input: stoneValue = [7,7,7,7,7,7,7]
Output: 28

Example 3:

Input: stoneValue = [4]
Output: 0

 

Constraints:



Solution:

class Solution {
    public int stoneGameV(int[] stoneValue) {
        int n = stoneValue.length;
        int[] prefix = new int[n];
        prefix[0] = stoneValue[0];
        for (int i = 1; i < n; i ++) {
            prefix[i] = prefix[i - 1] + stoneValue[i];
        }
        return dfs(stoneValue, 0, n - 1, prefix, new Integer[n][n]);
    }
    
    private int dfs(int[] arr, int l, int r, int[] prefix, Integer[][] dp) {
        if (l == r) return 0;
        if (l + 1 == r) return Math.min(arr[l], arr[r]);
        if (dp[l][r] != null) return dp[l][r];
        
        int res = 0;
        for (int i = l; i < r; i ++) {
            // left: [l, i], right: [i + 1, r]
            int left = prefix[i] - prefix[l] + arr[l];
            int right = prefix[r] - prefix[i];
            if (left > right) {
                // go right
                res = Math.max(res, dfs(arr, i + 1, r, prefix, dp) + right);
            } else if (left < right) {
                // go left
                res = Math.max(res, dfs(arr, l, i, prefix, dp) + left);
            } else {
                res = Math.max(res, Math.max(dfs(arr, i + 1, r, prefix, dp), dfs(arr, l, i, prefix, dp)) + left);
            }
        }
        return dp[l][r] = res;
    }
}