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
类似题目:
参考资料:
https://leetcode.com/problems/split-a-string-in-balanced-strings/