728x90
반응형
기본적인 DFS & BFS 문제이다.
DFS 풀이
import sys
sys.setrecursionlimit(3000000)
def dfs(y, x, cnt):
c = graph[y][x]
graph[y][x] = 1
for dy, dx in d:
Y, X = y+dy, x+dx
if (0 <= Y < M) and (0 <= X < N) and graph[Y][X] == c:
cnt = dfs(Y, X, cnt+1)
return cnt
N, M = map(int, input().split())
graph = [list(input()) for _ in range(M)]
d = [(-1, 0), (1, 0), (0, -1), (0, 1)]
w = b = 0
for i in range(M):
for j in range(N):
if graph[i][j] == 'W':
w += dfs(i, j, 1)**2
elif graph[i][j] == 'B':
b += dfs(i, j, 1)**2
print(w, b)
BFS 풀이
from collections import deque
def bfs(y, x):
q = deque()
q.append((y, x))
c = graph[y][x]
graph[y][x] = 1
cnt = 0
while q:
y, x = q.popleft()
cnt += 1
for dy, dx in d:
Y, X = y+dy, x+dx
if (0 <= Y < M) and (0 <= X < N) and graph[Y][X] == c:
q.append((Y, X))
graph[Y][X] = 1
return cnt
N, M = map(int, input().split())
graph = [list(input()) for _ in range(M)]
d = [(-1, 0), (1, 0), (0, -1), (0, 1)]
w = b = 0
for i in range(M):
for j in range(N):
if graph[i][j] == 'W':
w += bfs(i, j)**2
elif graph[i][j] == 'B':
b += bfs(i, j)**2
print(w, b)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 6186번 Best Grass(python) (0) | 2021.03.12 |
---|---|
백준 알고리즘 17806번 아기 상어 2(python) (0) | 2021.03.12 |
백준 알고리즘 1402번 아무래도이문제는A번난이도인것같다(python) (0) | 2021.03.12 |
백준 알고리즘 16956번 늑대와 양(python) (0) | 2021.03.12 |
백준 알고리즘 14716번 현수막(python) (0) | 2021.03.12 |