A. Protect Sheep
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
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
inputCopy
6 6
..S...
..S.W.
.S....
..W...
...W..
......
output
Yes
..SD..
..SDW.
.SD...
.DW...
DD.W..
......
inputCopy
1 2
SW
output
No
inputCopy
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.

不要求最小,只需判断有没有狼直接攻击羊,否则放狗。

//Stay foolish,stay hungry,stay young,stay simple
#include<iostream>
#include<string>
#include<cstdio>
using namespace std; const int MAXN=505; char map[MAXN][MAXN];
string s[MAXN];
int n,m; int main(){
cin>>n>>m;
for(int i=1;i<=n;i++){
cin>>s[i];
}
//
for(int i=1;i<=n;i++){
for(int j=0;j<m;j++){
map[i][j+1]=s[i][j];
}
}
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
if(map[i][j]=='W'){
if(map[i-1][j]=='S'||
map[i][j-1]=='S'||
map[i+1][j]=='S'||
map[i][j+1]=='S'){
cout<<"No\n";
return 0;
}
}
}
}
cout<<"Yes\n";
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
if(map[i][j]=='.'){
cout<<"D";
}
else cout<<map[i][j];
}
cout<<endl;
}
return 0;
}

最新文章

  1. [.NET] C# 知识回顾 - Event 事件
  2. Unity3D中可中途释放的单例
  3. MySQL Workbench 修改快捷键
  4. Qt之坐标系统
  5. 1. Linux驱动开发之开篇--Makefile
  6. MinGW 仿 linux 开发环境
  7. linux下64位汇编的系统调用系列
  8. Linux 编译安装 apache 2.4
  9. python手记(44)
  10. 从零开始学习UNITY3D(GUI篇 2)
  11. ROS使用常见问题
  12. ecshop QQ邮箱发送邮件服务器配置
  13. Android JSON解析库Gson和Fast-json的使用对比和图书列表小案例
  14. Useful Articles for the Oracle E-Business Suite Technology Stack for Technical Consultant / DBA [ID
  15. jdbc 链接数据库步骤 7步
  16. App 更换应用图标
  17. 看Android Stuido教程有感
  18. vue的环境配置
  19. dos脚本2
  20. Windows 下安装 swoole 具体步骤(php)

热门文章

  1. R Factor 如何转为c()
  2. bzoj 4446: [Scoi2015]小凸玩密室【树形dp】
  3. Java笔记-序列化的注意点
  4. AtCoder Regular Contest 074 F - Lotus Leaves
  5. codeforces 629C Famil Door and Brackets (dp + 枚举)
  6. windows下配置java环境jdk
  7. 在脚本中输入密码执行sudo,可关机等。
  8. jsp问题记录
  9. qconshanghai2014
  10. P1116 车厢重组