This is a question my friend asked me yesterday, which I believe is an interview question he saw. The rule is simple, for n=4
, there are 5 distinct pieces:
ooo
o
o
ooo
oo
oo
oooo
oo
oo
For a given n
, you need to calculate the number of distinct pieces.
By disinct it means these four are the same:
ooo o o o
o ooo o o
oo oo
I failed to solve this cause when n > 4
, the problem gets more complicated and I don't even know which kind of problem it belongs to. It looks like a DFS but you can choose multiple diretions at the same time. Removing duplicates is also important.
Here are solutions from wiki
Each polyomino of order n+1 can be obtained by adding a square to a polyomino of order n. This leads to algorithms for generating polyominoes inductively.
Most simply, given a list of polyominoes of order n, squares may be added next to each polyomino in each possible position, and the resulting polyomino of order n+1 added to the list if not a duplicate of one already found; refinements in ordering the enumeration and marking adjacent squares that should not be considered reduce the number of cases that need to be checked for duplicates.[9] This method may be used to enumerate either free or fixed polyominoes.
A more sophisticated method, described by Redelmeier, has been used by many authors as a way of not only counting polyominoes (without requiring that all polyominoes of order n be stored in order to enumerate those of order n+1), but also proving upper bounds on their number. The basic idea is that we begin with a single square, and from there, recursively add squares. Depending on the details, it may count each n-omino n times, once from starting from each of its n squares, or may be arranged to count each once only.
The simplest implementation involves adding one square at a time. Beginning with an initial square, number the adjacent squares, clockwise from the top, 1, 2, 3, and 4. Now pick a number between 1 and 4, and add a square at that location. Number the unnumbered adjacent squares, starting with 5. Then, pick a number larger than the previously picked number, and add that square. Continue picking a number larger than the number of the current square, adding that square, and then numbering the new adjacent squares. When n squares have been created, an n-omino has been created.
This method ensures that each fixed polyomino is counted exactly n times, once for each starting square. It can be optimized so that it counts each polyomino only once, rather than n times. Starting with the initial square, declare it to be the lower-left square of the polyomino. Simply do not number any square that is on a lower row, or left of the square on the same row. This is the version described by Redelmeier.
If one wishes to count free polyominoes instead, then one may check for symmetries after creating each n-omino. However, it is faster[10] to generate symmetric polyominoes separately (by a variation of this method)[11] and so determine the number of free polyominoes by Burnside's lemma.
The most modern algorithm for enumerating the fixed polyominoes was discovered by Iwan Jensen.[12] An improvement on Andrew Conway's method,[13] it is exponentially faster than the previous methods (however, its running time is still exponential in n).
Both Conway's and Jensen's versions of the transfer-matrix method involve counting the number of polyominoes that have a certain width. Computing the number for all widths gives the total number of polyominoes. The basic idea behind the method is that possible beginning rows are considered, and then to determine the minimum number of squares needed to complete the polyomino of the given width. Combined with the use of generating functions, this technique is able to count many polyominoes at once, thus enabling it to run many times faster than methods that have to generate every polyomino.
Although it has excellent running time, the tradeoff is that this algorithm uses exponential amounts of memory (many gigabytes of memory are needed for n above 50), is much harder to program than the other methods, and can't currently be used to count free polyominoes.
For me, this is enough. Nevertheless what I really want to calculate is the number of free polyominoes, but it seems there is no simple solution. If I'm asked about this in an interview, I'll just give the algorithm mentioned above to calculate the number of fixed polyominoes, then remove duplicate ones to count free polyominoes.