CF116B.Little Pigs and Wolves

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Once upon a time there were several little pigs and several wolves on a two-dimensional grid of size n×mn×m . Each cell in this grid was either empty, containing one little pig, or containing one wolf.

A little pig and a wolf are adjacent if the cells that they are located at share a side. The little pigs are afraid of wolves, so there will be at most one wolf adjacent to each little pig. But each wolf may be adjacent to any number of little pigs.

They have been living peacefully for several years. But today the wolves got hungry. One by one, each wolf will choose one of the little pigs adjacent to it (if any), and eats the poor little pig. This process is not repeated. That is, each wolf will get to eat at most one little pig. Once a little pig gets eaten, it disappears and cannot be eaten by any other wolf.

What is the maximum number of little pigs that may be eaten by the wolves?

输入格式

The first line contains integers nn and mm ( 1<=n,m<=101<=n,m<=10 ) which denotes the number of rows and columns in our two-dimensional grid, respectively. Then follow nn lines containing mm characters each — that is the grid description. "." means that this cell is empty. "P" means that this cell contains a little pig. "W" means that this cell contains a wolf.

It is guaranteed that there will be at most one wolf adjacent to any little pig.

输出格式

Print a single number — the maximal number of little pigs that may be eaten by the wolves.

输入输出样例

  • 输入#1

    2 3
    PPW
    W.P
    

    输出#1

    2
    
  • 输入#2

    3 3
    P.W
    .P.
    W.P
    

    输出#2

    0
    

说明/提示

In the first example, one possible scenario in which two little pigs get eaten by the wolves is as follows.

首页