접근
이전 2630번 색종이 만들기와 동일한 문제이지만, 2 * 2가 아닌 3 * 3으로 나눈다는 것만 수정해 주면 되겠다.
2021.04.01 - [코딩/백준 (Python)] - 백준 2630번: 색종이 만들기 (Python)
코드
import sys
n = int(sys.stdin.readline())
board = []
for _ in range(n):
board.append(list(map(int, sys.stdin.readline().split())))
count = [0, 0, 0] # -1, 0, 1
def cut(x, y, n):
check = board[x][y]
for i in range(x, x + n):
for j in range(y, y + n):
if check != board[i][j]:
cut(x, y, n // 3)
cut(x, y + n // 3, n // 3)
cut(x, y + 2 * n // 3, n // 3)
cut(x + n // 3, y, n // 3)
cut(x + n // 3, y + n // 3, n // 3)
cut(x + n // 3, y + 2 * n // 3, n // 3)
cut(x + 2 * n // 3, y, n // 3)
cut(x + 2 * n // 3, y + n // 3, n // 3)
cut(x + 2 * n // 3, y + 2 * n // 3, n // 3)
return
if check == -1:
count[0] += 1
return
elif check == 0:
count[1] += 1
return
else:
count[2] += 1
return
cut(0, 0, n)
print(count[0])
print(count[1])
print(count[2])
더 생각해 볼 것?
...
코드나 내용 관련 조언, 부족한 점 및 질문 언제든 환영합니다!
반응형
'코딩 > 백준 (Python)' 카테고리의 다른 글
백준 11444번: 피보나치 수 6 (Python) (0) | 2021.04.03 |
---|---|
백준 11401번: 이항 계수 3 (Python) (0) | 2021.04.02 |
백준 1992번: 쿼드트리 (Python) (0) | 2021.04.01 |
백준 2630번: 색종이 만들기 (Python) (0) | 2021.04.01 |
백준 5430번: AC (Python) (0) | 2021.04.01 |
최근댓글