시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB1381029774.615%

문제

You are mapping a faraway planet using a satellite. The planet's surface can be modeled as a grid. The satellite has captured an image of the surface. Each grid square is either land (denoted as 'L'), water (denoted as 'W'), or covered by clouds (denoted as 'C'). Clouds mean that the surface could either be land or water; you cannot tell.

An island is a region of land where every grid cell in the island is connected to every other by some path, and every leg of the path only goes up, down, left or right.

Given an image, determine the minimum number of islands that is consistent with the given image.

입력

Each input will consist of a single test case. Note that your program may be run multiple times on different inputs. The first line of input contains two integers, r and c (1 ≤ r,c ≤ 50), which are the number of rows and the number of columns of the image. The next r lines will each contain exactly c characters, consisting only of ‘L’ (representing Land), ‘W’ (representing Water), and ‘C’ (representing Clouds).

출력

Output a single integer, which is the minimum number of islands possible.

예제 입력 1

4 5
CCCCC
CCCCC
CCCCC
CCCCC

예제 출력 1

0

예제 입력 2

3 2
LW
CC
WL

예제 출력 2

1