LeetCode-in-Java

3499. Maximize Active Section with Trade I

Medium

You are given a binary string s of length n, where:

You can perform at most one trade to maximize the number of active sections in s. In a trade, you:

Return the maximum number of active sections in s after making the optimal trade.

Note: Treat s as if it is augmented with a '1' at both ends, forming t = '1' + s + '1'. The augmented '1's do not contribute to the final count.

Example 1:

Input: s = “01”

Output: 1

Explanation:

Because there is no block of '1's surrounded by '0's, no valid trade is possible. The maximum number of active sections is 1.

Example 2:

Input: s = “0100”

Output: 4

Explanation:

Example 3:

Input: s = “1000100”

Output: 7

Explanation:

Example 4:

Input: s = “01010”

Output: 4

Explanation:

Constraints:

Solution

public class Solution {
    public int maxActiveSectionsAfterTrade(String s) {
        int oneCount = 0;
        int convertedOne = 0;
        int curZeroCount = 0;
        int lastZeroCount = 0;
        for (int i = 0; i < s.length(); ++i) {
            if (s.charAt(i) == '0') {
                curZeroCount++;
            } else {
                if (curZeroCount != 0) {
                    lastZeroCount = curZeroCount;
                }
                curZeroCount = 0;
                oneCount++;
            }
            convertedOne = Math.max(convertedOne, curZeroCount + lastZeroCount);
        }
        // corner case
        if (convertedOne == curZeroCount || convertedOne == lastZeroCount) {
            return oneCount;
        }
        return oneCount + convertedOne;
    }
}