Problem8249--POJ2226 - Muddy Fields

8249: POJ2226 - Muddy Fields

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

Description

Rain has pummeled the cows' field, a rectangular grid of R rows and C columns $(1 \leq R \leq 50,\ 1 \leq C \leq 50)$. While good for the grass, the rain makes some patches of bare earth quite muddy. The cows, being meticulous grazers, don't want to get their hooves dirty while they eat.
To prevent those muddy hooves, Farmer John will place a number of wooden boards over the muddy parts of the cows' field. Each of the boards is 1 unit wide, and can be any length long. Each board must be aligned parallel to one of the sides of the field.
Farmer John wishes to minimize the number of boards needed to cover the muddy spots, some of which might require more than one board to cover. The boards may not cover any grass and deprive the cows of grazing area but they can overlap each other.
Compute the minimum number of boards FJ requires to cover all the mud in the field.

Input

Line 1: Two space-separated integers: R and C
Lines 2..R+1: Each line contains a string of C characters, with '*' representing a muddy patch, and '.' representing a grassy patch. No spaces are present.

Output

Line 1: A single integer representing the number of boards FJ needs.

Sample 1 Input

4 4
*.*.
.***
***.
..*.

Sample 1 Output

4
Boards 1, 2, 3 and 4 are placed as follows:
1.2.
.333
444.
..2.

Board 2 overlaps boards 3 and 4.

HINT

相同题目:POJ 2226

Source/Category