【竞赛题】6362. 最长平衡子字符串

题目:

给你一个仅由 0 和 1 组成的二进制字符串 s 。

如果子字符串中 所有的 0 都在 1 之前 且其中 0 的数量等于 1 的数量,则认为 s 的这个子字符串是平衡子字符串。请注意,空子字符串也视作平衡子字符串。

返回 s 中最长的平衡子字符串长度。

子字符串是字符串中的一个连续字符序列。

示例 1:

输入:s = “01000111”
输出:6
解释:最长的平衡子字符串是 “000111” ,长度为 6 。
示例 2:

输入:s = “00111”
输出:4
解释:最长的平衡子字符串是 “0011” ,长度为 4 。
示例 3:

输入:s = “111”
输出:0
解释:除了空子字符串之外不存在其他平衡子字符串,所以答案为 0 。

提示:

1 <= s.length <= 50
‘0’ <= s[i] <= ‘1’

java代码:

class Solution {
    public int findTheLongestBalancedSubstring(String s) {
        int max = 0;
        char[] cc = s.toCharArray();
        for(int i=0;i0&&cc[i]=='1'&&cc[i-1]=='0') {
            	//找到0、1分隔位,从分隔位往左、右找平衡子串
                int len = find(i, cc);
                max = Math.max(max, len);
            }
        }
        return max;
    }

    private int find(int i, char[] cc) {
        int len =0;
        int start = i-1;
        int end = i;
        while (start>=0 && end

你可能感兴趣的:(leetcode-数组,数据结构,算法,java)