eolymp
bolt
Try our new interface for solving problems
Problems

Balanced Subsets

Balanced Subsets

Farmer John's pasture can be regarded as a large 2D grid of square "cells" (picture a huge chessboard) labeled by the ordered pairs (i, j) for each i (1in), j (1jn). Some of the cells contain grass.

A nonempty subset of grid cells is called "balanced" if the following conditions hold:

  • All cells in the subset contain grass.
  • The subset is 4-connected. In other words, there exists a path from any cell in the subset to any other cell in the subset such that every two consecutive cells of the path are horizontally or vertically adjacent.
  • If cells (x1, y) and (x2, y) (x1x2) are part of the subset, then all cells (x, y) with x1xx2 are also part of the subset.
  • If cells (x, y1) and (x, y2) (y1y2) are part of the subset, then all cells (x, y) with y1yy2 are also part of the subset.

Count the number of balanced subsets modulo 109 + 7.

Input

The first line contains n (1n150).

The next n lines each contain a string of n characters. The j-th character of the i-th line from the top is equal to G if the cell at (i, j) contains grass, or . otherwise.

Output

Print the number of balanced subsets modulo 109 + 7.

Example 1

For this test case, all 4-connected subsets are balanced.

G.  .G  ..  ..  GG  .G  ..  G.  GG  .G  G.  GG  GG
.., .., G., .G, .., .G, GG, G., G., GG, GG, .G, GG

Example 2

Here is an example of a subset that satisfies the second condition (it is 4-connected) but does not satisfy the third condition:

GG..
.G..
GG..
....
Time limit 2 seconds
Memory limit 128 MiB
Input example #1
2
GG
GG
Output example #1
13
Input example #2
4
GGGG
GGGG
GG.G
GGGG
Output example #2
642
Source 2021 USACO US Open, Platinum