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 haveR(x) = {x}
. - For expressions
e1, e2, ... , ek
withk >= 2
, we haveR({e1, e2, ...}) = R(e1) ∪ R(e2) ∪ ...
- For expressions
e1
ande2
, we haveR(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: Depth-First Search
- Time complexity: O(2m+klogk)
- Space complexity: O(m+k)
m
is the total number of combinationsk
is the final number of results produced
JavaScript
js
/**
* @param {string} expression
* @return {string[]}
*/
const braceExpansionII = function (expression) {
const n = expression.length;
const mergeGroup = (groupA, groupB) => {
if (!groupA.length) return groupB;
const result = [];
for (const wordA of groupA) {
for (const wordB of groupB) {
result.push(`${wordA}${wordB}`);
}
}
return result;
};
const braceWord = (start, end) => {
const result = new Set();
const groups = [[]];
let left = start;
let layer = 0;
for (let index = start; index <= end; index++) {
const current = expression[index];
if (current === '{') {
if (layer === 0) {
left = index + 1;
}
layer += 1;
} else if (current === '}') {
if (layer === 1) {
const group = mergeGroup(groups.at(-1), braceWord(left, index - 1));
groups[groups.length - 1] = group;
}
layer -= 1;
} else if (current === ',' && layer === 0) {
groups.push([]);
} else if (layer === 0) {
const group = mergeGroup(groups.at(-1), [current]);
groups[groups.length - 1] = group;
}
}
for (const group of groups) {
for (const word of group) {
result.add(word);
}
}
return [...result];
};
return braceWord(0, n - 1).sort();
};