eolymp
bolt
Try our new interface for solving problems
Problems

Bull in a China Shop (Platinum)

Bull in a China Shop (Platinum)

Farmer John has decided his home needs more decoration. Visiting the local china shop, he finds a delicate glass cow figurine that he decides to purchase, knowing that it will fit perfectly on the mantel above his fireplace.

The shape of the cow figurine is described by an n * m (3n, m500) grid of characters like the one below, where lowercase letter characters are each part of the figurine (indicating different colors) and '.' characters are not.

...............
...............
x..x...........
xxxx...........
xxxxaaaaaaa...
.xx.aaaaaaaaa..
....aaaaaaa.aa.
....ll...ll....
....vv...vv....
...............

Unfortunately, right before FJ can make his purchase, a bull runs through the shop and breaks not only FJ's figurine, but many of the other glass objects on the shelves as well! FJ's figurine breaks into 3 pieces, which quickly become lost among k total pieces lying on the ground. Each of the k pieces is described by a grid of characters, just like the original figurine.

Please help FJ determine how many sets of 3 pieces (out of the k on the floor) could be glued back together to mend his broken figurine.

The pieces on the ground might have been flipped vertically or horizontally, or rotated by some multiple of 90 degrees. Therefore, given the original grid as well as k grids describing pieces, you want to find sets of 3 pieces that can be joined together to form the original picture, allowing the pieces to be translated, flipped, or rotated multiples of 90 degrees. When then superimposed, the 3 pieces should exactly form the original picture, with each colored square in the original picture represented in exactly one of the pieces.

Input

The first line contains a single integer k (4k100). Following that will be k + 1 piece descriptions. The first description will describe the original glass cow, the following k descriptions will be of the broken pieces.

Each description begins with a line containing two integers r and c (1r, c100). The following r lines contain c lowercase alphabet characters describing the color of each cell. Each piece will be horizontally/vertically connected and have at least one non-empty cell.

Output

Print the number of triples i, j, k (i < j < k) such that pieces i, j and k can be arranged to form the original glass cow.

Example

The three solutions use pieces (0, 1, 2), (0, 2, 4), (1, 3, 4).

Time limit 3 seconds
Memory limit 512 MiB
Input example #1
5
5 5
aaaaa
..a..
bbabb
..a..
aaaaa
3 5
..abb
..a..
aaaaa
5 2
a.
a.
aa
a.
a.
1 2
bb
1 5
bbabb
2 5
aaaaa
..a..
Output example #1
3
Source 2016 USACO US Open, Platinum