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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# 10026 적록색약
# BFS
# Python 112 ms
dx = [1, 0, -1, 0]
dy = [0, 1, 0, -1]
region1 = 0
region2 = 0
def bfs_rg(start): #초록색과 빨간색을 같은 그룹으로 파악
queue = [start]
color = board1[start[0]][start[1]]
if color =='R' or color=='G':
col_lst = ['R', 'G']
else:
col_lst = ['B']
board1[start[0]][start[1]] = 0
while queue:
pos = queue.pop()
for i in range(4):
nx = pos[0] + dx[i]
ny = pos[1] + dy[i]
if 0 <= nx and 0 <= ny and nx < n and ny < n and board1[nx][ny] in col_lst:
board1[nx][ny] = 0
queue.append((nx, ny))
def bfs_none(start): # 세가지 색상 모두 다른 그룹
queue =[start]
color = board2[start[0]][start[1]]
board2[start[0]][start[1]] = 0
while queue:
pos = queue.pop()
for i in range(4):
nx = pos[0] + dx[i]
ny = pos[1] + dy[i]
if 0<=nx and 0<=ny and nx<n and ny <n and board2[nx][ny] ==color:
board2[nx][ny] = 0
queue.append((nx,ny))
def solution():
global region1, region2
for i in range(n):
for j in range(n):
if board1[i][j] !=0:
bfs_rg((i,j))
region1 +=1
if board2[i][j] !=0:
bfs_none((i,j))
region2 +=1
import copy
n = int(input())
board1 = [list(input()) for _ in range(n)]
board2 = copy.deepcopy(board1) # Board를 복사해서 사용
solution()
print(region2, region1)
|
'프로그래밍' 카테고리의 다른 글
[백준 6603 파이썬] 로또 (0) | 2020.02.25 |
---|---|
[백준 7562 파이썬] 나이트 이동 (0) | 2020.02.25 |
[백준 2583 파이썬] 영역구하기 (0) | 2020.02.24 |
[백준 11724 파이썬] 연결 요소의 개수 (0) | 2020.02.24 |
[백준 2667 파이썬] 단지번호붙이기 (0) | 2020.02.24 |