浙工大姗姗杯round2 CodeForces 116BLittle Pigs and Wolves

来源:互联网 发布:手机上怎么看淘宝分销 编辑:程序博客网 时间:2024/05/17 03:08
B. Little Pigs and Wolves
time limit per test
 2 seconds
memory limit per test
 256 megabytes
input
 standard input
output
 standard output

Once upon a time there were several little pigs and several wolves on a two-dimensional grid of size n × 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?

Input

The first line contains integers n and m (1 ≤ n, m ≤ 10) which denotes the number of rows and columns in our two-dimensional grid, respectively. Then follow n lines containing m 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.

Output

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

Sample test(s)
input
2 3PPWW.P
output
2
input
3 3P.W.P.W.P
output
0
Note

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

题意:猪和狼一起住,有一天狼饿了想吃猪,一只狼只能吃一只在边上的猪,问做多几只猪被吃
思路:开始觉得是dfs遍历不断更新最大值,因为考虑了两只狼不能吃同一只猪的问题。但是后来看到题目里的一句话,一只猪旁边只有一只狼,结果就变成了很简单的水题。
#include <iostream>using namespace std;int main(){    int n, m, p = 0;    cin >> n >> m;    char a[11][11];    for(int i = 0; i < n; i++)        cin >> a[i];    for(int i = 0; i < n; i++){        for(int j = 0; j < m; j++){            if(a[i][j] == 'W' && ((a[i-1][j] == 'P') || a[i][j-1] == 'P' || a[i+1][j] == 'P' || a[i][j+1] == 'P'))                p++;        }    }    cout << p;    return 0;}


原创粉丝点击