[LeetCode] Brace Expansion II

1096. Brace Expansion II

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”}
  • 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.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
class Solution {
public:
string parseStr(string& exp, int& pos) {
stringstream ss;
while ('a' <= exp[pos] && exp[pos] <= 'z')
ss<<exp[pos++];
return ss.str();
}

set<string> parse(string& exp, int& pos) {
set<string> res, tmp;
while (pos < exp.length() && exp[pos] != '}') {
if (exp[pos] == ',') {
res.insert(tmp.begin(), tmp.end());
tmp.clear();
pos++;
}
set<string> tmpp;
if (exp[pos] == '{') {
tmpp = parse(exp, ++pos);
pos++;
} else {
tmpp.insert(parseStr(exp, pos));
}

if (tmp.empty())
tmp = tmpp;
else {
set<string> tmppp;
for (auto& it1 : tmp) {
for (auto& it2 : tmpp)
tmppp.insert(it1 + it2);
}
swap(tmp, tmppp);
}
}
res.insert(tmp.begin(),tmp.end());
return res;
}

vector<string> braceExpansionII(string expression) {
int i = 0;
set<string> res = parse(expression, i);
return vector<string>(res.begin(),res.end());
}
};
Author: Song Hayoung
Link: https://songhayoung.github.io/2022/01/30/PS/LeetCode/brace-expansion-ii/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.