1690. Stone Game VII
Description
Alice and Bob take turns playing a game, with Alice starting first.
There are n stones arranged in a row. On each player's turn, they can remove either the leftmost stone or the rightmost stone from the row and receive points equal to the sum of the remaining stones' values in the row. The winner is the one with the higher score when there are no stones left to remove.
Bob found that he will always lose this game (poor Bob, he always loses), so he decided to minimize the score's difference. Alice's goal is to maximize the difference in the score.
Given an array of integers stones where stones[i] represents the value of the ith stone from the left, return the difference in Alice and Bob's score if they both play optimally.
Example 1:
Input: stones = [5,3,1,4,2] Output: 6 Explanation: - Alice removes 2 and gets 5 + 3 + 1 + 4 = 13 points. Alice = 13, Bob = 0, stones = [5,3,1,4]. - Bob removes 5 and gets 3 + 1 + 4 = 8 points. Alice = 13, Bob = 8, stones = [3,1,4]. - Alice removes 3 and gets 1 + 4 = 5 points. Alice = 18, Bob = 8, stones = [1,4]. - Bob removes 1 and gets 4 points. Alice = 18, Bob = 12, stones = [4]. - Alice removes 4 and gets 0 points. Alice = 18, Bob = 12, stones = []. The score difference is 18 - 12 = 6.
Example 2:
Input: stones = [7,90,5,1,100,10,10,2] Output: 122
Constraints:
n == stones.length2 <= n <= 10001 <= stones[i] <= 1000
Solutions
Solution 1: Memorization Search
Thinking
Each turn removes one end and scores the sum of what remains. The first-player minus second-player gap on an interval is a memoized game: \(dfs(i,j)\) is the current player's advantage.
Prefix sums \(s\) give the score after dropping the left or right end; take the larger of \(s[j+1]-s[i+1]-dfs(i+1,j)\) and \(s[j]-s[i]-dfs(i,j-1)\).
First, we preprocess to get the prefix sum array \(s\), where \(s[i]\) represents the total sum of the first \(i\) stones.
Next, we design a function \(dfs(i, j)\), which represents the score difference between the first and second players when the remaining stones are \(stones[i], stones[i + 1], \dots, stones[j]\). The answer is \(dfs(0, n - 1)\).
The calculation process of the function \(dfs(i, j)\) is as follows:
- If \(i > j\), it means there are no stones currently, so return \(0\);
- Otherwise, the first player has two choices, which are to remove \(stones[i]\) or \(stones[j]\), and then calculate the score difference, i.e., \(a = s[j + 1] - s[i + 1] - dfs(i + 1, j)\) and \(b = s[j] - s[i] - dfs(i, j - 1)\). We take the larger of the two as the return value of \(dfs(i, j)\).
During the process, we use memorization search, i.e., use an array \(f\) to record the return value of the function \(dfs(i, j)\), to avoid repeated calculations.
The time complexity is \(O(n^2)\), and the space complexity is \(O(n^2)\). Here, \(n\) is the number of stones.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | |
Solution 2: Dynamic Programming
Thinking
The recursion becomes interval DP. \(f[i][j]\) has the same meaning and needs shorter intervals first: fill decreasing \(i\) and increasing \(j\). The answer is \(f[0][n-1]\).
We can convert the memoization search in Solution 1 into dynamic programming. We define \(f[i][j]\) as the score difference between the first and second players when the remaining stones are \(stones[i], stones[i + 1], \dots, stones[j]\). Therefore, the answer is \(f[0][n - 1]\).
The state transition equation is as follows:
When calculating \(f[i][j]\), we need to ensure that \(f[i + 1][j]\) and \(f[i][j - 1]\) have been calculated. Therefore, we need to enumerate \(i\) in descending order and \(j\) in ascending order.
Finally, the answer is \(f[0][n - 1]\).
The time complexity is \(O(n^2)\), and the space complexity is \(O(n^2)\). Here, \(n\) is the number of stones.
1 2 3 4 5 6 7 8 9 10 11 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | |