728x90
반응형
기본적인 BFS 문제이다. 양과 늑대가 인접해있으면 막을 수가 없으므로 0을 출력해주고,
인접한 경우가 없다면 늑대를 가둬버리고 결과를 출력해주면 된다.
from collections import deque
def bfs(y, x):
for dy, dx in d:
Y, X = y+dy, x+dx
if (0 <= Y < R) and (0 <= X < C):
if graph[Y][X] == 'S':
return False
if graph[Y][X] == '.':
graph[Y][X] = 'D'
return True
R, C = map(int, input().split())
graph = [list(input()) for _ in range(R)]
d = [(-1, 0), (1, 0), (0, -1), (0, 1)]
for i in range(R):
for j in range(C):
t = True
if graph[i][j] == 'W':
t = bfs(i, j)
if t == False:
print(0)
break
if t:
print(1)
for line in graph:
print(''.join(line))
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 1303번 전쟁 - 전투(python) (1) | 2021.03.12 |
---|---|
백준 알고리즘 1402번 아무래도이문제는A번난이도인것같다(python) (0) | 2021.03.12 |
백준 알고리즘 14716번 현수막(python) (0) | 2021.03.12 |
백준 알고리즘 18405번 경쟁적 전염(python) (0) | 2021.03.12 |
백준 알고리즘 3187번 양치기 꿍(python) (0) | 2021.03.12 |