Pyramid Transition Matrix Problem


Description

LeetCode Problem 756.

You are stacking blocks to form a pyramid. Each block has a color, which is represented by a single letter. Each row of blocks contains one less block than the row beneath it and is centered on top.

To make the pyramid aesthetically pleasing, there are only specific triangular patterns that are allowed. A triangular pattern consists of a single block stacked on top of two blocks. The patterns are givenas a list ofthree-letter strings allowed, where the first two characters of a pattern represent the left and right bottom blocks respectively, and the third character is the top block.

  • For example, “ABC” represents a triangular pattern with a ‘C’ block stacked on top of an ‘A’ (left) and ‘B’ (right) block. Note that this is different from “BAC” where ‘B’ is on the left bottom and ‘A’ is on the right bottom.

You start with a bottom row of blocks bottom, given as a single string, that you must use as the base of the pyramid.

Given bottom and allowed, return true if you can build the pyramid all the way to the top such that every triangular pattern in the pyramid is in allowed, or false otherwise.

Example 1:

1
2
3
4
5
Input: bottom = "BCD", allowed = ["BCC","CDE","CEA","FFF"]
Output: true
Explanation: The allowed triangular patterns are shown on the right.
Starting from the bottom (level 3), we can build "CE" on level 2 and then build "E" on level 1.
There are three triangular patterns in the pyramid, which are "BCC", "CDE", and "CEA". All are allowed.

Example 2:

1
2
3
4
Input: bottom = "AAAA", allowed = ["AAB","AAC","BCD","BBE","DEF"]
Output: false
Explanation: The allowed triangular patterns are shown on the right.
Starting from the bottom (level 4), there are multiple ways to build level 3, but trying all the possibilites, you will get always stuck before building level 1.

Constraints:

  • 2 <= bottom.length <= 6
  • 0 <= allowed.length <= 216
  • allowed[i].length == 3
  • The letters in all input strings are from the set {‘A’, ‘B’, ‘C’, ‘D’, ‘E’, ‘F’}.
  • All the values of allowed are unique.


Sample C++ Code

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
class Solution {
public:
    unordered_set<string> invalid;
    
    bool dfs(string bottom, unordered_map<string, vector<char>>& m, int start, string next) {
        // Reached the top
        if (bottom.size() == 1) 
            return true;
        if (invalid.count(bottom)) 
            return false;
        
        // Moving to next upper layer
        if (start == (int)bottom.size() - 1) 
            return dfs(next, m, 0, "");

        // Search for this combination in allowed
        for (char c : m[bottom.substr(start, 2)])
            if (dfs(bottom, m, start + 1, next + c)) 
                return true;
        
        invalid.insert(bottom);
        return false;
    }
    
public:
    bool pyramidTransition(string bottom, vector<string>& allowed) {
        unordered_map<string, vector<char>> m;
        
        for (auto& s : allowed)
            m[s.substr(0, 2)].push_back(s.back());
        
        return dfs(bottom, m, 0, "");
    }
};




Related Posts

Pyramid Transition Matrix Problem

LeetCode 756. You are stacking blocks to form a pyramid....