Skip to content

Latest commit

 

History

History
151 lines (114 loc) · 3.14 KB

File metadata and controls

151 lines (114 loc) · 3.14 KB

English Version

题目描述

在一个 平衡字符串 中,'L''R' 字符的数量是相同的。

给你一个平衡字符串 s,请你将它分割成尽可能多的平衡字符串。

注意:分割得到的每个字符串都必须是平衡字符串。

返回可以通过分割得到的平衡字符串的 最大数量

 

示例 1:

输入:s = "RLRRLLRLRL"
输出:4
解释:s 可以分割为 "RL"、"RRLL"、"RL"、"RL" ,每个子字符串中都包含相同数量的 'L' 和 'R' 。

示例 2:

输入:s = "RLLLLRRRLR"
输出:3
解释:s 可以分割为 "RL"、"LLLRRR"、"LR" ,每个子字符串中都包含相同数量的 'L' 和 'R' 。

示例 3:

输入:s = "LLLLRRRR"
输出:1
解释:s 只能保持原样 "LLLLRRRR".

示例 4:

输入:s = "RLRRRLLRLL"
输出:2
解释:s 可以分割为 "RL"、"RRRLLRLL" ,每个子字符串中都包含相同数量的 'L' 和 'R' 。

 

提示:

  • 1 <= s.length <= 1000
  • s[i] = 'L' 或 'R'
  • s 是一个 平衡 字符串

解法

Python3

class Solution:
    def balancedStringSplit(self, s: str) -> int:
        n = res = 0
        for c in s:
            if c == 'L':
                n += 1
            else:
                n -= 1
            if n == 0:
                res += 1
        return res

Java

class Solution {
    public int balancedStringSplit(String s) {
        int n = 0, res = 0;
        for (char c : s.toCharArray()) {
            if (c == 'L') {
                ++n;
            } else {
                --n;
            }
            if (n == 0) {
                ++res;
            }
        }
        return res;
    }
}

C++

class Solution {
public:
    int balancedStringSplit(string s) {
        int n = 0, res = 0;
        for (char c : s) {
            if (c == 'L') ++n;
            else --n;
            if (n == 0) ++res;
        }
        return res;
    }
};

Go

func balancedStringSplit(s string) int {
	n, res := 0, 0
	for _, c := range s {
		if c == 'L' {
			n++
		} else {
			n--
		}
		if n == 0 {
			res++
		}
	}
	return res
}

...