A891.262144--Platinum

普及+/提高

USACO

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

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×MN \times M grid of
characters like the one below (3N,M5003 \leq N, M \leq 500), 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 KK total pieces lying on the ground (4K1004 \leq K \leq 100). Each of
the KK 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 KK 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 KK 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.

输入格式

The first line contains a single integer KK. Following that will be K+1K + 1
piece descriptions. The first description will describe the original glass
cow, the following KK descriptions will be of the broken pieces.
Each description begins with a line containing two integers RR and CC (1R,C1001 \le R, C \le 100). The following RR lines contain CC 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 the number of triples i,j,ki, j, k (i<j<ki < j < k) such that pieces ii,
jj, and kk can be arranged to form the original glass cow.

输入输出样例

  • 输入#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..
    

    输出#1

    3
    

说明/提示

The three solutions use pieces (0,1,2)(0, 1, 2), (0,2,4)(0, 2, 4), (1,3,4)(1, 3, 4).
Note that this problem has a time limit of 6 seconds per test case (and twice
that for Java and Python submissions).

首页