-- 贪心 - easy 点击直达力扣
在一个 平衡字符串 中,'L' 和 'R' 字符的数量是相同的。
给你一个平衡字符串 s,请你将它分割成尽可能多的平衡字符串。
注意:分割得到的每个字符串都必须是平衡字符串,且分割得到的平衡字符串是原平衡字符串的连续子串。
返回可以通过分割得到的平衡字符串的 最大数量 。
示例 1:
输入:s = "RLRRLLRLRL"
输出:4
解释:s 可以分割为 "RL"、"RRLL"、"RL"、"RL" ,每个子字符串中都包含相同数量的 'L' 和 'R' 。
示例 2:
输入:s = "RLLLLRRRLR"
输出:3
解释:s 可以分割为 "RL"、"LLLRRR"、"LR" ,每个子字符串中都包含相同数量的 'L' 和 'R' 。
// 遍历+计数
// 碰见相同字符+1,不同-1;当count=0时,找到平衡子字符串
function balancedStringSplit(s: string): number {
let ans = 0
let count = 1
let flag = s[0]
for (let i = 1; i < s.length; i++) {
if (count != 0) {
flag === s[i] ? count++ : count--
} else {
ans++
flag = s[i]
count = 1
}
}
// 最后要返回ans+1,因为遍历到最后时,i=s.length;count=0,但却没有累加
return ans + 1
};