#D10790. Falling Block Puzzle

    ID: 8972 Type: Default 8000ms 268MiB

Falling Block Puzzle

Falling Block Puzzle

Falling Block Puzzle

Block drop

You are playing a falling block puzzle. As shown in the figure below, the field of this puzzle has a shape in which cubic cells are arranged in 2 squares x 2 squares in each row, and the rows are infinitely arranged on the top.

Each cell either has one block that fits snugly in the cell, or nothing. This puzzle proceeds as follows.

  1. Some blocks are installed in the initial state.
  2. Drop a block that fits in 2 squares x 2 squares x 2 squares from above. However, before dropping, the block can be translated horizontally so that the block does not stick out of the field.
  3. When the bottom surface of one of the dropped blocks reaches the bottom of the block or field that has already been placed, all the blocks will stop falling and stop.
  4. For each stage, if all 4 squares are filled, the blocks in that stage will disappear, and the blocks above it will fall one by one. Even if there are no blocks in the cell below each block after the fall, it will not fall any further.
  5. Return to 2.

Since the blocks placed in the initial state and some lumps to be dropped are given, create a program to find out how many steps can be erased by dropping all the lumps in the order given.

Input

The input consists of 100 or less datasets. Each dataset has the following form.

(Initial block height H) (Number of lumps to drop N) (1st stage in the initial state) ... (H stage in the initial state) (1st drop) ... (Nth drop)

The first line of each dataset specifies the initial block height H (1 ≤ H ≤ 10) and the number of lumps to drop N (1 ≤ N ≤ 3). Then, the information of each stage in the initial state is given in the following format.

c11 c12 c21 c22

cij represents the information of each cell,'#' indicates that a block exists, and'.' Indicates that there is no block. It can be assumed that there are no blocks in all cells or no blocks in all cells for each of the first to H rows. Then, the information of each drop mass is given in the following format.

b111 b112 b121 b122 b211 b212 b221 b222

As in the initial state format,'#' indicates that a block exists, and'.' Indicates that there is no block. Each block contains at least one block. The blocks contained in the block may be touched only by the corners and sides, and are not necessarily connected by the surface.

Refer to the figure below for the correspondence of the input subscripts of the initial state and block block.

The end of the input is indicated by a single line of two zeros.

The figure below shows the first data set in the Sample Input shown later. In this dataset, one step can be erased by translating a block of blocks diagonally and then dropping them.

Output

For each dataset, output on one line how many columns can be erased at the maximum.

Sample Input

1 1

.. .. .. .. .. 1 1 . # .. .. .. .. . # twenty two

..

.. .. . #

.. .. .. .. .. 13 .. ..

10 3

..

..

. #

. # ..

..

. #

. #

. # .. . # .. .. . # .. . # .. .. .. .. .. .. .. .. 10 3

. #

..

.. . # ..

. # . #

. #

..

. # .. . # .. .. . # .. .. .. .. .. .. .. .. . # 0 0

Output for Sample Input

1 0 3 6 6 0

Example

Input

1 1

#. .. .. #. .. 1 1 .# #. #. .. .. .# 2 2

#.

#. .. .#

#. #. .. #. .. 1 3 #. ..

10 3

#.

#.

.#

.# #.

#.

.#

.#

.# #. .# #. #. .# #. .# #. .. #. .. #. .. #. .. 10 3

.#

..

#. .# ..

.# .#

.#

#.

.# .. .# #. #. .# #. #. #. #. .. .. .. .. .# 0 0

Output

1 0 3 6 6 0

inputFormat

Input

The input consists of 100 or less datasets. Each dataset has the following form.

(Initial block height H) (Number of lumps to drop N) (1st stage in the initial state) ... (H stage in the initial state) (1st drop) ... (Nth drop)

The first line of each dataset specifies the initial block height H (1 ≤ H ≤ 10) and the number of lumps to drop N (1 ≤ N ≤ 3). Then, the information of each stage in the initial state is given in the following format.

c11 c12 c21 c22

cij represents the information of each cell,'#' indicates that a block exists, and'.' Indicates that there is no block. It can be assumed that there are no blocks in all cells or no blocks in all cells for each of the first to H rows. Then, the information of each drop mass is given in the following format.

b111 b112 b121 b122 b211 b212 b221 b222

As in the initial state format,'#' indicates that a block exists, and'.' Indicates that there is no block. Each block contains at least one block. The blocks contained in the block may be touched only by the corners and sides, and are not necessarily connected by the surface.

Refer to the figure below for the correspondence of the input subscripts of the initial state and block block.

The end of the input is indicated by a single line of two zeros.

The figure below shows the first data set in the Sample Input shown later. In this dataset, one step can be erased by translating a block of blocks diagonally and then dropping them.

outputFormat

Output

For each dataset, output on one line how many columns can be erased at the maximum.

Sample Input

1 1

.. .. .. .. .. 1 1 . # .. .. .. .. . # twenty two

..

.. .. . #

.. .. .. .. .. 13 .. ..

10 3

..

..

. #

. # ..

..

. #

. #

. # .. . # .. .. . # .. . # .. .. .. .. .. .. .. .. 10 3

. #

..

.. . # ..

. # . #

. #

..

. # .. . # .. .. . # .. .. .. .. .. .. .. .. . # 0 0

Output for Sample Input

1 0 3 6 6 0

Example

Input

1 1

#. .. .. #. .. 1 1 .# #. #. .. .. .# 2 2

#.

#. .. .#

#. #. .. #. .. 1 3 #. ..

10 3

#.

#.

.#

.# #.

#.

.#

.#

.# #. .# #. #. .# #. .# #. .. #. .. #. .. #. .. 10 3

.#

..

#. .# ..

.# .#

.#

#.

.# .. .# #. #. .# #. #. #. #. .. .. .. .. .# 0 0

Output

1 0 3 6 6 0

样例

1 1
##
#.
..
..
#.
..
1 1
.#
#.
#.
..
..
.#
2 2
##
#.
##
#.
..
.#
##
#.
#.
..
#.
..
1 3
#.
..
##
##
##
##
##
##
##
##
##
##
##
##
10 3
##
#.
##
#.
##
.#
##
.#
#.
##
#.
##
.#
##
.#
##
.#
#.
.#
#.
#.
.#
#.
.#
#.
..
#.
..
#.
..
#.
..
10 3
##
.#
##
..
##
#.
.#
..
##
.#
.#
##
.#
##
#.
##
##
.#
..
.#
#.
#.
.#
#.
#.
#.
#.
..
..
..
..
.#
0 0
1

0 3 6 6 0

</p>