White Lines

아직 제출이 없습니다시간 제한1.5초메모리 제한256 MB

문제

Gildong has bought a famous painting software cfpaint. The working screen of cfpaint is square-shaped consisting of nn rows and nn columns of square cells. The rows are numbered from 11 to nn, from top to bottom, and the columns are numbered from 11 to nn, from left to right. The position of a cell at row rr and column cc is represented as (r,c)(r,c). There are only two colors for the cells in cfpaint --- black and white.

There is a tool named eraser in cfpaint. The eraser has an integer size kk (1kn1\le k\le n). To use the eraser, Gildong needs to click on a cell (i,j)(i,j) where 1i,jnk+11\le i,j\le n-k+1. When a cell (i,j)(i,j) is clicked, all of the cells (i,j)(i',j') where iii+k1i\le i'\le i+k-1 and jjj+k1j\le j'\le j+k-1 become white. In other words, a square with side equal to kk cells and top left corner at (i,j)(i,j) is colored white.

A white line is a row or a column without any black cells.

Gildong has worked with cfpaint for some time, so some of the cells (possibly zero or all) are currently black. He wants to know the maximum number of white lines after using the eraser exactly once. Help Gildong find the answer to his question.

입력

The first line contains two integers nn and kk (1kn20001\le k\le n\le 2000) --- the number of rows and columns, and the size of the eraser.

The next nn lines contain nn characters each without spaces. The jj-th character in the ii-th line represents the cell at (i,j)(i,j). Each character is given as either ‘B’ representing a black cell, or ‘W’ representing a white cell.

출력

Print one integer: the maximum number of white lines after using the eraser exactly once.

힌트

In the first example, Gildong can click the cell (2,2)(2,2), then the working screen becomes:

BWWW
WWWW
WWWW
WWWB

Then there are four white lines --- the 22-nd and 33-rd row, and the 22-nd and 33-rd column.

In the second example, clicking the cell (2,3)(2,3) makes the 22-nd row a white line.

In the third example, both the 22-nd column and 55-th row become white lines by clicking the cell (3,2)(3,2).