CodeForces - 948A Protect Sheep水题
Posted 海岛Blog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeForces - 948A Protect Sheep水题相关的知识,希望对你有一定的参考价值。
A. Protect Sheep
time limit per test1 second
memory limit per test256 megabytes
Bob is a farmer. He has a large pasture with many sheep. Recently, he has lost some of them due to wolf attacks. He thus decided to place some shepherd dogs in such a way that all his sheep are protected.
The pasture is a rectangle consisting of R × C cells. Each cell is either empty, contains a sheep, a wolf or a dog. Sheep and dogs always stay in place, but wolves can roam freely around the pasture, by repeatedly moving to the left, right, up or down to a neighboring cell. When a wolf enters a cell with a sheep, it consumes it. However, no wolf can enter a cell with a dog.
Initially there are no dogs. Place dogs onto the pasture in such a way that no wolf can reach any sheep, or determine that it is impossible. Note that since you have many dogs, you do not need to minimize their number.
Input
First line contains two integers R (1 ≤ R ≤ 500) and C (1 ≤ C ≤ 500), denoting the number of rows and the numbers of columns respectively.
Each of the following R lines is a string consisting of exactly C characters, representing one row of the pasture. Here, ‘S’ means a sheep, ‘W’ a wolf and ‘.’ an empty cell.
Output
If it is impossible to protect all sheep, output a single line with the word “No”.
Otherwise, output a line with the word “Yes”. Then print R lines, representing the pasture after placing dogs. Again, ‘S’ means a sheep, ‘W’ a wolf, ‘D’ is a dog and ‘.’ an empty space. You are not allowed to move, remove or add a sheep or a wolf.
If there are multiple solutions, you may print any of them. You don’t have to minimize the number of dogs.
Examples
input
6 6
…S…
…S.W.
.S…
…W…
…W…
…
output
Yes
…SD…
…SDW.
.SD…
.DW…
DD.W…
…
input
1 2
SW
output
No
input
5 5
.S…
…S.
S…
…S.
.S…
output
Yes
.S…
…S.
S.D…
…S.
.S…
Note
In the first example, we can split the pasture into two halves, one containing wolves and one containing sheep. Note that the sheep at (2,1) is safe, as wolves cannot move diagonally.
In the second example, there are no empty spots to put dogs that would guard the lone sheep.
In the third example, there are no wolves, so the task is very easy. We put a dog in the center to observe the peacefulness of the meadow, but the solution would be correct even without him.
问题链接:CodeForces - 948A Protect Sheep
问题简述:(略)
问题分析:(略)
AC的C++语言程序如下:
/* CodeForces - 948A Protect Sheep */
#include <stdio.h>
#define RC 500
char a[RC][RC + 1];
int main()
int r, c;
scanf("%d%d", &r, &c);
for (int i = 0; i < r; i++)
scanf("%s", a[i]);
int flag = 1;
for (int i = 0; i < r && flag; i++)
for (int j = 0; j < c && flag; j++)
if (a[i][j] == 'W')
if (i && a[i - 1][j] == 'S') flag = 0;
else if (i < r - 1 && a[i + 1][j] == 'S') flag = 0;
else if (j && a[i][j - 1] == 'S') flag = 0;
else if (j < c - 1 && a[i][j + 1] == 'S') flag = 0;
if (flag)
printf("Yes\\n");
for (int i = 0; i < r; i++)
for (int j = 0; j < c; j++)
if (a[i][j] == '.') putchar('D');
else putchar(a[i][j]);
putchar('\\n');
else
printf("No\\n");
return 0;
2022深度学习开发者峰会
5月20日13:00让我们相聚云端,共襄盛会!
以上是关于CodeForces - 948A Protect Sheep水题的主要内容,如果未能解决你的问题,请参考以下文章