CF948A.Protect Sheep

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

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×CR×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.

输入格式

First line contains two integers RR ( 1<=R<=5001<=R<=500 ) and CC ( 1<=C<=5001<=C<=500 ), denoting the number of rows and the numbers of columns respectively.

Each of the following RR lines is a string consisting of exactly CC characters, representing one row of the pasture. Here, 'S' means a sheep, 'W' a wolf and '.' an empty cell.

输出格式

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 RR 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.

输入输出样例

  • 输入#1

    6 6
    ..S...
    ..S.W.
    .S....
    ..W...
    ...W..
    ......
    

    输出#1

    Yes
    ..SD..
    ..SDW.
    .SD...
    .DW...
    DD.W..
    ......
    
  • 输入#2

    1 2
    SW
    

    输出#2

    No
    
  • 输入#3

    5 5
    .S...
    ...S.
    S....
    ...S.
    .S...
    

    输出#3

    Yes
    .S...
    ...S.
    S.D..
    ...S.
    .S...
    

说明/提示

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.

首页