[LeetCode] 1221. Split a String in Balanced Strings 分割平衡字符串

2021/9/14 6:08:12

本文主要是介绍[LeetCode] 1221. Split a String in Balanced Strings 分割平衡字符串,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!


Balanced strings are those that have an equal quantity of 'L' and 'R' characters.

Given a balanced string s, split it in the maximum amount of balanced strings.

Return the maximum amount of split balanced strings.

Example 1:

Input: s = "RLRRLLRLRL"
Output: 4
Explanation: s can be split into "RL", "RRLL", "RL", "RL", each substring contains same number of 'L' and 'R'.

Example 2:

Input: s = "RLLLLRRRLR"
Output: 3
Explanation: s can be split into "RL", "LLLRRR", "LR", each substring contains same number of 'L' and 'R'.

Example 3:

Input: s = "LLLLRRRR"
Output: 1
Explanation: s can be split into "LLLLRRRR".

Example 4:

Input: s = "RLRRRLLRLL"
Output: 2
Explanation: s can be split into "RL", "RRRLLRLL", since each substring contains an equal number of 'L' and 'R'

Constraints:

  • 1 <= s.length <= 1000
  • s[i] is either 'L' or 'R'.
  • s is a balanced string.

这道题给了一个只有L和R两个字符的字符串,并且定义了一种平衡字符串,即L和R的个数相同,现在问最多能将字符串分为多少个这样的平衡字符串。博主看到这题以后第一反应就觉得这是一道验证合法括号个数的题目,就像之前的那道 Valid Parentheses,这里的L就可以看作是左括号,R可以看作是右括号,其实这道题比验证合法括号更简单一些,因为合法括号不仅仅需要左右括号个数相同,而且任何时候右括号的个数不能多于左括号,而这道题并没有这个限制。这里只需要一个 cnt 变量来记录L的个数,遇到L则 cnt 自增1,遇到R则 cnt 自减1。每次检测一下,若某个状态 cnt 为0了,则说明此时L和R个数相等了,结果 res 自增1即可,参见代码如下:


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

Github 同步地址:

https://github.com/grandyang/leetcode/issues/1221


类似题目:

Valid Parentheses


参考资料:

https://leetcode.com/problems/split-a-string-in-balanced-strings/

https://leetcode.com/problems/split-a-string-in-balanced-strings/discuss/403836/C%2B%2BJavaPython-Easy-Solution


LeetCode All in One 题目讲解汇总(持续更新中...)



这篇关于[LeetCode] 1221. Split a String in Balanced Strings 分割平衡字符串的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程