博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #470 (rated, Div. 2, based on VK Cup 2018 Round 1)A. Protect Sheep
阅读量:4539 次
发布时间:2019-06-08

本文共 3092 字,大约阅读时间需要 10 分钟。

 
A. Protect Sheep

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
Copy
6 6 ..S... ..S.W. .S.... ..W... ...W.. ......
output
Yes ..SD.. ..SDW. .SD... .DW... DD.W.. ......
input
Copy
1 2 SW
output
No
input
Copy
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.

 

题意就是给一个N*C矩阵,让你往空白的'.'的地方放狗,用来把羊'S'和狼'W'分隔开来,狗的数量不限,输出任意解。所以只要遍历整个矩阵,如果有S和W相邻则不可行,反之可行,所有空白处都放上狗。

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define INF 0x3f3f3f3f#define lowbit(x) (x&(-x))#define eps 0.00000001#define pn printf("\n")using namespace std;typedef long long ll;int n,m;char s[550][550];int to[4][2] = { 0,1,0,-1,1,0,-1,0};int main(){ scanf("%d%d",&n,&m); for(int i=0;i
=0 && tx < n && ty >= 0 && ty < m) { if(s[tx][ty] == 'W') { fl = 1; break; } } } } } if(fl) printf("No\n"); else { printf("Yes\n"); for(int i=0;i

 

 

转载于:https://www.cnblogs.com/HazelNut/p/8543489.html

你可能感兴趣的文章
Java中HashMap和TreeMap的区别深入理解
查看>>
bat 获取命令执行后的多个返回值,并取最后一个
查看>>
TensorFlow MNIST 问题解决
查看>>
C#微信开发之旅(一):前言
查看>>
C语言常用数学函数及其用法
查看>>
操作节点
查看>>
java Lambda
查看>>
saltstack远程执行之目标选择
查看>>
华为机试测试- 字符串最长的数字串
查看>>
ArrayDeque类的使用详解
查看>>
组合数据类型练习:
查看>>
JSON.parse()和JSON.stringify()
查看>>
Python中的列表
查看>>
将一个数据库中表的数据添加到另一个数据库
查看>>
C#委托的介绍(delegate、Action、Func、predicate)
查看>>
leetcode 76. Minimum Window Substring
查看>>
如何用Eclipse打jar包
查看>>
学习是一种投资
查看>>
banking
查看>>
Android笔记(十七) Android中的Service
查看>>