Problem7563-- [CSES Problem Set] Counting Rooms

7563: [CSES Problem Set] Counting Rooms

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

You are given a map of a building, and your task is to count the number of its rooms. 
The size of the map is $n \times m$ squares, and each square is either floor or wall. You can walk left, right, up, and down through the floor squares.

Input

The first input line has two integers $n$ and $m$: the height and width of the map.
Then there are $n$ lines of $m$ characters describing the map. Each character is either . (floor) or # (wall).

Output

Print one integer: the number of rooms.

Constraints

$1≤n,m≤1000$

Sample 1 Input

5 8
########
#..#...#
####.#.#
#..#...#
########

Sample 1 Output

3

HINT

相同题目:CSES 1192

Source/Category