문제
알고리즘
- 백 트래킹과 bfs 탐색을 한 번에 수행한다.
- 벽을 3개 세울 때까지 백 트래킹 후 3개 세웠다면 바이러스 위치에서 bfs 탐색을 한다.
- 탐색 후 안전한 위치를 카운트하여 최댓값을 출력한다.
코드
pypy3 통과
import sys
from collections import deque
import copy
# 백 트래킹
def back_tracking(cnt):
global answer
# 벽을 3개 세웠다면
if cnt == 3:
answer = max(answer, bfs())
return
for i in range(n):
for j in range(m):
if graph[i][j] == 0:
graph[i][j] = 1
back_tracking(cnt + 1) # 백 트래킹
graph[i][j] = 0
# bfs 탐색
def bfs():
dx = [-1, 1, 0, 0]
dy = [0, 0, -1, 1]
tmp_graph = copy.deepcopy(graph) # graph 복사
queue = deque()
for i in range(n):
for j in range(m):
if tmp_graph[i][j] == 2: # 바이러스 위치 확인
queue.append((i, j))
while queue:
x, y = queue.pop()
for k in range(4):
nx = x + dx[k]
ny = y + dy[k]
if 0 <= nx < n and 0 <= ny < m and tmp_graph[nx][ny] == 0:
tmp_graph[nx][ny] = 2
queue.append([nx, ny])
# 안전한 위치 확인
safe_zone = 0
for c in range(n):
safe_zone += tmp_graph[c].count(0)
return safe_zone
n, m = map(int, sys.stdin.readline().split())
graph = [list(map(int, sys.stdin.readline().split())) for _ in range(n)]
answer = 0
back_tracking(0)
print(answer)
github
'CodingTest > Baekjoon' 카테고리의 다른 글
[baekjoon] 백준 18111번(파이썬): 마인크래프트 (0) | 2022.05.02 |
---|---|
[baekjoon] 백준 1759번(파이썬): 암호 만들기 (0) | 2022.05.01 |
[baekjoon] 백준 10989번(파이썬): 수 정렬하기 3 (0) | 2022.04.28 |
[baekjoon] 백준 11060번(파이썬): 점프 점프 (0) | 2022.04.28 |
[baekjoon] 백준 15988번(파이썬): 1, 2, 3 더하기 3 (0) | 2022.04.26 |