返回介绍

solution / 1500-1599 / 1563.Stone Game V / README_EN

发布于 2024-06-17 01:03:18 字数 6225 浏览 0 评论 0 收藏 0

1563. Stone Game V

中文文档

Description

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:

  • 1 <= stoneValue.length <= 500
  • 1 <= stoneValue[i] <= 106

Solutions

Solution 1

class Solution:
  def stoneGameV(self, stoneValue: List[int]) -> int:
    @cache
    def dfs(i, j):
      if i == j:
        return 0
      ans = a = 0
      for k in range(i, j):
        a += stoneValue[k]
        b = s[j + 1] - s[i] - a
        if a < b:
          if ans >= a * 2:
            continue
          ans = max(ans, a + dfs(i, k))
        elif a > b:
          if ans >= b * 2:
            break
          ans = max(ans, b + dfs(k + 1, j))
        else:
          ans = max(ans, a + dfs(i, k), b + dfs(k + 1, j))
      return ans

    s = list(accumulate(stoneValue, initial=0))
    return dfs(0, len(stoneValue) - 1)
class Solution {
  private int n;
  private int[] s;
  private int[] stoneValue;
  private Integer[][] f;

  public int stoneGameV(int[] stoneValue) {
    n = stoneValue.length;
    this.stoneValue = stoneValue;
    s = new int[n + 1];
    for (int i = 1; i <= n; ++i) {
      s[i] = s[i - 1] + stoneValue[i - 1];
    }
    f = new Integer[n][n];
    return dfs(0, n - 1);
  }

  private int dfs(int i, int j) {
    if (i == j) {
      return 0;
    }
    if (f[i][j] != null) {
      return f[i][j];
    }
    int ans = 0;
    int a = 0;
    for (int k = i; k < j; ++k) {
      a += stoneValue[k];
      int b = s[j + 1] - s[i] - a;
      if (a < b) {
        if (ans >= a * 2) {
          continue;
        }
        ans = Math.max(ans, a + dfs(i, k));
      } else if (a > b) {
        if (ans >= b * 2) {
          break;
        }
        ans = Math.max(ans, b + dfs(k + 1, j));
      } else {
        ans = Math.max(ans, Math.max(a + dfs(i, k), b + dfs(k + 1, j)));
      }
    }
    return f[i][j] = ans;
  }
}
class Solution {
public:
  int stoneGameV(vector<int>& stoneValue) {
    int n = stoneValue.size();
    int s[n + 1];
    s[0] = 0;
    for (int i = 1; i <= n; ++i) {
      s[i] = s[i - 1] + stoneValue[i - 1];
    }
    int f[n][n];
    memset(f, 0, sizeof(f));
    function<int(int, int)> dfs = [&](int i, int j) -> int {
      if (i == j) {
        return 0;
      }
      if (f[i][j]) {
        return f[i][j];
      }
      int ans = 0;
      int a = 0;
      for (int k = i; k < j; ++k) {
        a += stoneValue[k];
        int b = s[j + 1] - s[i] - a;
        if (a < b) {
          if (ans >= a * 2) {
            continue;
          }
          ans = max(ans, a + dfs(i, k));
        } else if (a > b) {
          if (ans >= b * 2) {
            break;
          }
          ans = max(ans, b + dfs(k + 1, j));
        } else {
          ans = max({ans, a + dfs(i, k), b + dfs(k + 1, j)});
        }
      }
      return f[i][j] = ans;
    };
    return dfs(0, n - 1);
  }
};
func stoneGameV(stoneValue []int) int {
  n := len(stoneValue)
  s := make([]int, n+1)
  for i, x := range stoneValue {
    s[i+1] = s[i] + x
  }
  f := make([][]int, n)
  for i := range f {
    f[i] = make([]int, n)
  }
  var dfs func(i, j int) int
  dfs = func(i, j int) int {
    if i == j {
      return 0
    }
    if f[i][j] != 0 {
      return f[i][j]
    }
    ans, a := 0, 0
    for k := i; k < j; k++ {
      a += stoneValue[k]
      b := s[j+1] - s[i] - a
      if a < b {
        if ans >= a*2 {
          continue
        }
        ans = max(ans, a+dfs(i, k))
      } else if a > b {
        if ans >= b*2 {
          break
        }
        ans = max(ans, b+dfs(k+1, j))
      } else {
        ans = max(ans, max(a+dfs(i, k), b+dfs(k+1, j)))
      }
    }
    f[i][j] = ans
    return ans
  }
  return dfs(0, n-1)
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文