-
Notifications
You must be signed in to change notification settings - Fork 154
/
pyramid-transition-matrix.js
105 lines (91 loc) · 2.5 KB
/
pyramid-transition-matrix.js
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/**
* Pyramid Transition Matrix
*
* We are stacking blocks to form a pyramid. Each block has a color which is a one letter string, like `'Z'`.
*
* For every block of color `C` we place not in the bottom row, we are placing it on top of a left block of
* color `A` and * right block of color `B`. We are allowed to place the block there only if `(A, B, C)` is
* an allowed triple.
*
* We start with a bottom row of bottom, represented as a single string. We also start with a list of allowed
* triples * allowed. Each allowed triple is represented as a string of length 3.
*
* Return true if we can build the pyramid all the way to the top, otherwise false.
*
* Example 1:
*
* Input: bottom = "XYZ", allowed = ["XYD", "YZE", "DEA", "FFF"]
* Output: true
*
* Explanation:
* We can stack the pyramid like this:
*
* A
* / \
* D E
* / \ / \
* X Y Z
*
* This works because ('X', 'Y', 'D'), ('Y', 'Z', 'E'), and ('D', 'E', 'A') are allowed triples.
*
* Example 2:
*
* Input: bottom = "XXYX", allowed = ["XXX", "XXY", "XYX", "XYY", "YXZ"]
* Output: false
*
* Explanation:
*
* We can't stack the pyramid to the top.
* Note that there could be allowed triples (A, B, C) and (A, B, D) with C != D.
*
* Note:
* bottom will be a string with length in range [2, 8].
* allowed will have length in range [0, 200].
* Letters in all strings will be chosen from the set {'A', 'B', 'C', 'D', 'E', 'F', 'G'}.
*/
/**
* @param {string} bottom
* @param {string[]} allowed
* @return {boolean}
*/
const pyramidTransition = (bottom, allowed) => {
const dict = new Map();
for (let s of allowed) {
const key = s.substr(0, 2);
const val = s.substr(2);
if (!dict.has(key)) {
dict.set(key, []);
}
dict.get(key).push(val);
}
return dfs(bottom, dict);
};
const dfs = (bottom, dict) => {
if (bottom.length === 1) {
return true;
}
for (let i = 0; i < bottom.length - 1; i++) {
const key = bottom.substr(i, i + 2);
if (!dict.has(key)) {
return false;
}
}
const bottoms = [];
getBottoms(bottom, dict, 0, '', bottoms);
for (let bottom of bottoms) {
if (dfs(bottom, dict)) {
return true;
}
}
return false;
};
const getBottoms = (bottom, dict, index, solution, bottoms) => {
if (index === bottom.length - 1) {
return bottoms.push(solution);
}
const key = bottom.substr(index, index + 2);
for (let c of dict.get(key)) {
getBottoms(bottom, dict, index + 1, solution + c, bottoms);
}
};
export { pyramidTransition };