1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# 3184 양
# BFS
# PyPy3 180 ms
# BFS 이동
dx = [0,1,0,-1]
dy = [-1,0,1,0]
def bfs(x,y):
queue = [(x,y)]
o, v = 0, 0
while queue:
x, y = queue.pop()
if board[x][y]=='v':
v +=1
if board[x][y]=='o':
o +=1
board[x][y]='#'
for i in range(4):
nx = x + dx[i]
ny = y + dy[i]
if 0 <= nx < M and 0 <= ny < N :
if board[nx][ny] != '#':
if o<=v :
o=0
else:
v =0
return o, v
M, N = map(int, input().split())
board = [list(input()) for _ in range(M)]
O, V = 0, 0
for i in range(M):
for j in range(N):
if board[i][j]=='v' or board[i][j]=='o':
o, v = bfs(i,j)
O +=o
V +=v
print(O, V)
|
'프로그래밍' 카테고리의 다른 글
[백준 2644 촌수 계산] 파이썬 (0) | 2020.02.26 |
---|---|
[백준 7576 토마토 ] 파이썬 풀이 (0) | 2020.02.25 |
[백준 7459 파이썬] 토마토 (0) | 2020.02.25 |
[백준 3055 파이썬] 탈출 (0) | 2020.02.25 |
[백준 6603 파이썬] 로또 (0) | 2020.02.25 |