Pyramid Transition Matrix
We are stacking blocks to form a pyramid. Each block has a color which is a one letter string.
We are allowed to place any color blockCon top of two adjacent blocks of colorsAandB, if and only ifABCis an allowed triple.
We start with a bottom row ofbottom, represented as a single string. We also start with a list of allowed triplesallowed. 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 = "BCD", allowed = ["BCG", "CDE", "GEA", "FFF"]
Output:
true
Explanation:
We can stack the pyramid like this:
A
/ \
G E
/ \ / \
B C D
We are allowed to place G on top of B and C because BCG is an allowed triple. Similarly, we can place E on top of C and D, then A on top of G and E.Example 2:
Note:
bottomwill be a string with length in range
[2, 8].
allowedwill have length in range
[0, 200].
Letters in all strings will be chosen from the set
{'A', 'B', 'C', 'D', 'E', 'F', 'G'}.
分析
map里存所有2字母可达的第三字母
product返回数组的所有组合,这里product所有map里的value,也就是所有可达组合,然后dfs递归
Last updated
Was this helpful?