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

문제

On a cold Christmas night in 2010, Zagreb was covered in snow. Zdravko decided to leave his castle, cross the road and take a stroll through the Maksimir park. Unfortunately, the idyllic winter evening was interrupted by a monster that was lurking in the nearby bushes. The monster jumped in front of Zdravko, but Zdravko roared a mighty roar which scared the monster away. Unbeknownst to him, a bunch of animals from the nearby zoo were startled by that roar. More precisely, a group of tigers and bulls were so annoyed that they decided to escape the zoo in order to find a nice quiet place to sleep.

During their escape, the animals had to pass through a rectangular area divided in R × C unit squares. The animals must enter the area through the upper-left corner and must leave the area through the lower-right corner. In order to escape as quietly as possible, animals will pass through this area one by one, walking along an arbitrary path in four general directions (up, down, left and right). In other words, each animal does not necessarily travel along a shortest path during its escape and it might step on the same unit square more than once (including the entrance and exit). Since the ground is covered in snow, animals leave footprints when they step inside unit squares. If another footprint is already in the square that is about to be stepped on, the animal will erase the previous footprint and leave a new one.

Your task is to determine the minimal number of animals that have escaped the Maksimir zoo based on the footprints that were left in the aforementioned rectangular area.

입력

The first line contains two integers R and C from the task description.

The next R lines contain C characters that represent the rectangular area from the task description Character T represents a tiger’s footprint, character B represents a bull’s footprint and character * represents untouched snow.

You can assume that the input data is such that at least one animal entered the rectangular area and that each animal that entered the area has also left the area according to the rules from the task description.

출력

Output the minimal number of animals that have escaped the zoo.

서브태스크

번호배점제한
145

2 ≤ R, C ≤ 100

265

2 ≤ R, C ≤ 1000

예제 입력 1

4 4
TT*T
*TTT
***T
***T

예제 출력 1

1

예제 입력 2

3 5
TTBB*
*T*B*
*TTTT

예제 출력 2

2

예제 입력 3

7 5
BT***
BTBBB
BTTTB
BBT*B
BBT*B
BBT**
*BBBB

예제 출력 3

3

채점 및 기타 정보

  • 예제는 채점하지 않는다.