COCI '10 Contest 2 #6 Crni

View as PDF

Submit solution


Points: 12 (partial)
Time limit: 1.0s
Memory limit: 128M

Problem type

Even though he has found all the most amusing rides, Mirko's enthusiasm still isn't fading. He opened his graph paper notebook and started colouring squares, and a new, even harder problem dawned on him.

You are given a square table consisting of N rows by N columns. Each cell is either black or white.

A set of cells forming a rectangle, with horizontal and vertical edges following cell borders, shall be called a black rectangle if all cells inside the rectangle are black and it consists of at least two cells.

The left image shows two rectangles which are not black rectangles. The rectangle labelled 1 is not a black rectangle because it contains a white cell, and the rectangle labelled 2 is not a black rectangle because it consists of only one cell. On the other hand, the right image shows three valid black rectangles.

Calculate the number of possible selections of two black rectangles that have no common cells. As the required number can be extremely large, you should output the remainder of dividing that number by 10\,007.

Input Specification

The first line of input contains the integer N (2 \leq N \leq 1\,000).

Each of the next N lines contains a single row of the table, consisting of N symbols. The symbol C represents a black cell, while B represents a white cell.

Output Specification

The first and only line of output must contain the remainder of dividing the required number by 10\,007.

Sample Input 1

2
CC
CC

Sample Output 1

2

Sample Input 2

3
CCB
CCB
CBB

Sample Output 2

5

Sample Input 3

5
BCCBB
BBCBB
BCCBB
BBBBB
CCBBB

Sample Output 3

8

Comments

There are no comments at the moment.