返回介绍

solution / 0200-0299 / 0293.Flip Game / README_EN

发布于 2024-06-17 01:04:02 字数 4135 浏览 0 评论 0 收藏 0

293. Flip Game

中文文档

Description

You are playing a Flip Game with your friend.

You are given a string currentState that contains only '+' and '-'. You and your friend take turns to flip two consecutive "++" into "--". The game ends when a person can no longer make a move, and therefore the other person will be the winner.

Return all possible states of the string currentState after one valid move. You may return the answer in any order. If there is no valid move, return an empty list [].

 

Example 1:

Input: currentState = "++++"
Output: ["--++","+--+","++--"]

Example 2:

Input: currentState = "+"
Output: []

 

Constraints:

  • 1 <= currentState.length <= 500
  • currentState[i] is either '+' or '-'.

Solutions

Solution 1: Traversal + Simulation

We traverse the string. If the current character and the next character are both +, we change these two characters to -, add the result to the result array, and then change these two characters back to +.

After the traversal ends, we return the result array.

The time complexity is $O(n^2)$, where $n$ is the length of the string. Ignoring the space complexity of the result array, the space complexity is $O(n)$ or $O(1)$.

class Solution:
  def generatePossibleNextMoves(self, currentState: str) -> List[str]:
    s = list(currentState)
    ans = []
    for i, (a, b) in enumerate(pairwise(s)):
      if a == b == "+":
        s[i] = s[i + 1] = "-"
        ans.append("".join(s))
        s[i] = s[i + 1] = "+"
    return ans
class Solution {
  public List<String> generatePossibleNextMoves(String currentState) {
    List<String> ans = new ArrayList<>();
    char[] s = currentState.toCharArray();
    for (int i = 0; i < s.length - 1; ++i) {
      if (s[i] == '+' && s[i + 1] == '+') {
        s[i] = '-';
        s[i + 1] = '-';
        ans.add(new String(s));
        s[i] = '+';
        s[i + 1] = '+';
      }
    }
    return ans;
  }
}
class Solution {
public:
  vector<string> generatePossibleNextMoves(string s) {
    vector<string> ans;
    for (int i = 0; i < s.size() - 1; ++i) {
      if (s[i] == '+' && s[i + 1] == '+') {
        s[i] = s[i + 1] = '-';
        ans.emplace_back(s);
        s[i] = s[i + 1] = '+';
      }
    }
    return ans;
  }
};
func generatePossibleNextMoves(currentState string) (ans []string) {
  s := []byte(currentState)
  for i := 0; i < len(s)-1; i++ {
    if s[i] == '+' && s[i+1] == '+' {
      s[i], s[i+1] = '-', '-'
      ans = append(ans, string(s))
      s[i], s[i+1] = '+', '+'
    }
  }
  return
}
function generatePossibleNextMoves(currentState: string): string[] {
  const s = currentState.split('');
  const ans: string[] = [];
  for (let i = 0; i < s.length - 1; ++i) {
    if (s[i] === '+' && s[i + 1] === '+') {
      s[i] = s[i + 1] = '-';
      ans.push(s.join(''));
      s[i] = s[i + 1] = '+';
    }
  }
  return ans;
}

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

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

发布评论

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