1520. Maximum Number of Non-Overlapping Substrings

Difficulty:
Related Topics:
Similar Questions:

    Problem

    Given a string s of lowercase letters, you need to find the maximum number of non-empty substrings of s that meet the following conditions:

    Find the maximum number of substrings that meet the above conditions. If there are multiple solutions with the same number of substrings, **return the one with minimum total length. **It can be shown that there exists a unique solution of minimum total length.

    Notice that you can return the substrings in any order.

      Example 1:

    Input: s = "adefaddaccc"
    Output: ["e","f","ccc"]
    Explanation: The following are all the possible substrings that meet the conditions:
    [
      "adefaddaccc"
      "adefadda",
      "ef",
      "e",
      "f",
      "ccc",
    ]
    If we choose the first string, we cannot choose anything else and we'd get only 1. If we choose "adefadda", we are left with "ccc" which is the only one that doesn't overlap, thus obtaining 2 substrings. Notice also, that it's not optimal to choose "ef" since it can be split into two. Therefore, the optimal way is to choose ["e","f","ccc"] which gives us 3 substrings. No other solution of the same number of substrings exist.
    

    Example 2:

    Input: s = "abbaccd"
    Output: ["d","bb","cc"]
    Explanation: Notice that while the set of substrings ["d","abba","cc"] also has length 3, it's considered incorrect since it has larger total length.
    

      Constraints:

    Solution

    class Solution {
        public List<String> maxNumOfSubstrings(String s) {
            int[] lefts = new int[26];
            int[] rights = new int[26];
            Arrays.fill(lefts, -1);
            for (int i = 0; i < s.length(); i++) {
                int idx = s.charAt(i) - 'a';
                if (lefts[idx] == -1) {
                    lefts[idx] = i;
                }
                rights[idx] = i;
            }
            List<String> result = new ArrayList<>();
            Deque<int[]> stack = new ArrayDeque<>();
            int[] top = null;
            for (int i = 0; i < s.length(); i++) {
                int idx = s.charAt(i) - 'a';
                if (i == lefts[idx]) {
                    if (top == null || rights[idx] < top[1]) {
                        top = new int[] {i, rights[idx]};
                        stack.offerFirst(top);
                    } else if (rights[idx] > top[1]) {
                        top[1] = rights[idx];
                    }
                } else if (top != null && lefts[idx] < top[0]) {
                    int newEnd = rights[idx];
                    while (top != null && top[0] > lefts[idx]) {
                        newEnd = Math.max(newEnd, top[1]);
                        stack.pollFirst();
                        top = stack.peekFirst();
                    }
                    if (top != null) {
                        top[1] = Math.max(newEnd, top[1]);
                    }
                }
                if (top != null && i >= top[1]) {
                    result.add(s.substring(top[0], top[1] + 1));
                    stack.clear();
                    top = null;
                }
            }
            return result;
        }
    }
    

    Explain:

    nope.

    Complexity: