分割平衡字符串
在一个「平衡字符串」中,'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".
提示:
1 <= s.length <= 1000
s[i] = 'L' 或 'R'
public class Test1 {
public static void main(String[] args) {
System.out.println(balancedStringSplit("RRLRRLRLLLRL"));
}
public static int balancedStringSplit(String s) {
int stack = 0;
int cnt = 0;
for(char c: s.toCharArray()) {
if(c == 'R') {
stack--;
} else {
stack++;
}
if(stack == 0) {
cnt++;
}
}
return cnt;
class Solution {
public int balancedStringSplit(String s) {
int num = 0;
int res = 0;
for(int i=0;i<s.length();i++){
if(s.charAt(i) == 'L')
num++;
else
num--;
if(num == 0)
res++;
}
return res;
}
}