1096.Brace-Expansion-II

1096. Brace Expansion II

题目地址

https://leetcode.com/problems/brace-expansion-ii/

题目描述

Under a grammar given below, strings can represent a set of lowercase words.  Let's use R(expr) to denote the set of words the expression represents.

Grammar can best be understood through simple examples:

Single letters represent a singleton set containing that word.
R("a") = {"a"}
R("w") = {"w"}
When we take a comma delimited list of 2 or more expressions, we take the union of possibilities.
R("{a,b,c}") = {"a","b","c"}
R("{{a,b},{b,c}}") = {"a","b","c"} (notice the final set only contains each word at most once)
When we concatenate two expressions, we take the set of possible concatenations between two words where the first word comes from the first expression and the second word comes from the second expression.
R("{a,b}{c,d}") = {"ac","ad","bc","bd"}
R("a{b,c}{d,e}f{g,h}") = {"abdfg", "abdfh", "abefg", "abefh", "acdfg", "acdfh", "acefg", "acefh"}
Formally, the 3 rules for our grammar:

For every lowercase letter x, we have R(x) = {x}
For expressions e_1, e_2, ... , e_k with k >= 2, we have R({e_1,e_2,...}) = R(e_1) ∪ R(e_2) ∪ ...
For expressions e_1 and e_2, we have R(e_1 + e_2) = {a + b for (a, b) in R(e_1) × R(e_2)}, where + denotes concatenation, and × denotes the cartesian product.
Given an expression representing a set of words under the given grammar, return the sorted list of words that the expression represents.

Example 1:
Input: "{a,b}{c,{d,e}}"
Output: ["ac","ad","ae","bc","bd","be"]

Example 2:
Input: "{{a,z},a{b,c},{ab,z}}"
Output: ["a","ab","ac","z"]
Explanation: Each distinct word is written only once in the final answer.

Constraints:
1 <= expression.length <= 60
expression[i] consists of '{', '}', ','or lowercase English letters.
The given expression represents a set of words based on the grammar given in the description.

代码

Approach #1 Recursion

Time: O(1) && Space: O(1)

class Solution {
  public List<String> braceExpansionII(String expression) {
        List<String> res = new ArrayList<>();
    if (expression.length() <= 1) {
      res.add(expression);
      return res;
    }

    if (expression.charAt(0) == '{') {
      int cnt = 0;
      int idx = 0;
      for (; idx < expression.length(); idx++) {
        if (expression.charAt(idx) == '{')    cnt++;
        if (expression.charAt(idx) == '}')    cnt--;
        if (cnt == 0)        break;
      }
      List<String> strs = helper(expression.substring(1, idx));
      HashSet<String> set = new HashSet<>();
      for (String str: strs) {
        List<String> tmp = braceExpansionII(str);
        set.addAll(tmp);
      }
      List<String> rest = braceExpansionII(expression.substring(idx+1));
      for (String str1 : set) {
        for (String str2: rest) {
          res.add(str1 + str2);
        }
      }
    } 
    // expression.charAt(0) != '{' 
    else {
      String prev = expression.charAt(0) + "";
      int idx = 0;
      List<String> rest = braceExpansionII(expression.substring(1));
      for (String s: rest) {
        res.add(prev + s);
      }
    }

    Collections.sort(res);
    return res;
  }

  private List<String> helper(String s) {
    List<String> res = new ArrayList<>();
    int cnt = 0;
    int i = 0;
    for (int j = 0; j < s.length(); j++) {
      if (s.charAt(j) == ',') {
        if (cnt == 0) {
          res.add(s.substring(i, j));
          i = j + 1;
        }
      } else if (s.charAt(j) == '{') {
        cnt++;
      } else if (s.charAt(j) == '}') {
        cnt--;
      }
    }

    res.add(s.substring(i));
    return res;
  }
}

Last updated