返回介绍

solution / 1000-1099 / 1096.Brace Expansion II / README_EN

发布于 2024-06-17 01:03:23 字数 6380 浏览 0 评论 0 收藏 0

1096. Brace Expansion II

中文文档

Description

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

The 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 two 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 three rules for our grammar:

  • For every lowercase letter x, we have R(x) = {x}.
  • For expressions e1, e2, ... , ek with k >= 2, we have R({e1, e2, ...}) = R(e1) ∪ R(e2) ∪ ...
  • For expressions e1 and e2, we have R(e1 + e2) = {a + b for (a, b) in R(e1) × R(e2)}, 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: expression = "{a,b}{c,{d,e}}"
Output: ["ac","ad","ae","bc","bd","be"]

Example 2:

Input: expression = "{{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.

Solutions

Solution 1

class Solution:
  def braceExpansionII(self, expression: str) -> List[str]:
    def dfs(exp):
      j = exp.find('}')
      if j == -1:
        s.add(exp)
        return
      i = exp.rfind('{', 0, j - 1)
      a, c = exp[:i], exp[j + 1 :]
      for b in exp[i + 1 : j].split(','):
        dfs(a + b + c)

    s = set()
    dfs(expression)
    return sorted(s)
class Solution {
  private TreeSet<String> s = new TreeSet<>();

  public List<String> braceExpansionII(String expression) {
    dfs(expression);
    return new ArrayList<>(s);
  }

  private void dfs(String exp) {
    int j = exp.indexOf('}');
    if (j == -1) {
      s.add(exp);
      return;
    }
    int i = exp.lastIndexOf('{', j);
    String a = exp.substring(0, i);
    String c = exp.substring(j + 1);
    for (String b : exp.substring(i + 1, j).split(",")) {
      dfs(a + b + c);
    }
  }
}
class Solution {
public:
  vector<string> braceExpansionII(string expression) {
    dfs(expression);
    return vector<string>(s.begin(), s.end());
  }

private:
  set<string> s;

  void dfs(string exp) {
    int j = exp.find_first_of('}');
    if (j == string::npos) {
      s.insert(exp);
      return;
    }
    int i = exp.rfind('{', j);
    string a = exp.substr(0, i);
    string c = exp.substr(j + 1);
    stringstream ss(exp.substr(i + 1, j - i - 1));
    string b;
    while (getline(ss, b, ',')) {
      dfs(a + b + c);
    }
  }
};
func braceExpansionII(expression string) []string {
  s := map[string]struct{}{}
  var dfs func(string)
  dfs = func(exp string) {
    j := strings.Index(exp, "}")
    if j == -1 {
      s[exp] = struct{}{}
      return
    }
    i := strings.LastIndex(exp[:j], "{")
    a, c := exp[:i], exp[j+1:]
    for _, b := range strings.Split(exp[i+1:j], ",") {
      dfs(a + b + c)
    }
  }
  dfs(expression)
  ans := make([]string, 0, len(s))
  for k := range s {
    ans = append(ans, k)
  }
  sort.Strings(ans)
  return ans
}
function braceExpansionII(expression: string): string[] {
  const dfs = (exp: string) => {
    const j = exp.indexOf('}');
    if (j === -1) {
      s.add(exp);
      return;
    }
    const i = exp.lastIndexOf('{', j);
    const a = exp.substring(0, i);
    const c = exp.substring(j + 1);
    for (const b of exp.substring(i + 1, j).split(',')) {
      dfs(a + b + c);
    }
  };
  const s: Set<string> = new Set();
  dfs(expression);
  return Array.from(s).sort();
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文