返回介绍

solution / 1900-1999 / 1963.Minimum Number of Swaps to Make the String Balanced / README_EN

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

1963. Minimum Number of Swaps to Make the String Balanced

中文文档

Description

You are given a 0-indexed string s of even length n. The string consists of exactly n / 2 opening brackets '[' and n / 2 closing brackets ']'.

A string is called balanced if and only if:

  • It is the empty string, or
  • It can be written as AB, where both A and B are balanced strings, or
  • It can be written as [C], where C is a balanced string.

You may swap the brackets at any two indices any number of times.

Return _the minimum number of swaps to make _s _balanced_.

 

Example 1:

Input: s = "][]["
Output: 1
Explanation: You can make the string balanced by swapping index 0 with index 3.
The resulting string is "[[]]".

Example 2:

Input: s = "]]][[["
Output: 2
Explanation: You can do the following to make the string balanced:
- Swap index 0 with index 4. s = "[]][][".
- Swap index 1 with index 5. s = "[[][]]".
The resulting string is "[[][]]".

Example 3:

Input: s = "[]"
Output: 0
Explanation: The string is already balanced.

 

Constraints:

  • n == s.length
  • 2 <= n <= 106
  • n is even.
  • s[i] is either '['or ']'.
  • The number of opening brackets '[' equals n / 2, and the number of closing brackets ']' equals n / 2.

Solutions

Solution 1: Greedy

We use a variable $x$ to record the current number of unmatched left brackets. We traverse the string $s$, for each character $c$:

  • If $c$ is a left bracket, then we increment $x$ by one;
  • If $c$ is a right bracket, then we need to check whether $x$ is greater than zero. If it is, we match the current right bracket with the nearest unmatched left bracket on the left, i.e., decrement $x$ by one.

After the traversal, we will definitely get a string of the form "]]]...[[[...". We then greedily swap the brackets at both ends each time, which can eliminate $2$ unmatched left brackets at a time. Therefore, the total number of swaps needed is $\left\lfloor \frac{x + 1}{2} \right\rfloor$.

The time complexity is $O(n)$, where $n$ is the length of the string $s$. The space complexity is $O(1)$.

class Solution:
  def minSwaps(self, s: str) -> int:
    x = 0
    for c in s:
      if c == "[":
        x += 1
      elif x:
        x -= 1
    return (x + 1) >> 1
class Solution {
  public int minSwaps(String s) {
    int x = 0;
    for (int i = 0; i < s.length(); ++i) {
      char c = s.charAt(i);
      if (c == '[') {
        ++x;
      } else if (x > 0) {
        --x;
      }
    }
    return (x + 1) / 2;
  }
}
class Solution {
public:
  int minSwaps(string s) {
    int x = 0;
    for (char& c : s) {
      if (c == '[') {
        ++x;
      } else if (x) {
        --x;
      }
    }
    return (x + 1) / 2;
  }
};
func minSwaps(s string) int {
  x := 0
  for _, c := range s {
    if c == '[' {
      x++
    } else if x > 0 {
      x--
    }
  }
  return (x + 1) / 2
}
function minSwaps(s: string): number {
  let x = 0;
  for (const c of s) {
    if (c === '[') {
      ++x;
    } else if (x) {
      --x;
    }
  }
  return (x + 1) >> 1;
}

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

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

发布评论

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