일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 1759번
- 분할정복
- 프로그래머스
- python
- 2630번
- 18406번
- codility
- caniuse
- 영어
- BinaryGap
- 11047번
- github
- 1057번
- 권주현의 진짜 영국 영어
- 11727번
- 알고리즘
- 파이썬
- 입이 트이는 영어
- programmers
- 2163번
- 1793번
- 9251번
- 백준
- Spring Security
- EBS어학당
- 신규아이디추천
- Java
- WebSecurityConfigurerAdapter
- 1992번
- SecurityFilterChain
Archives
- Today
- Total
철갑이의 이모저모
[백준] 1992번(쿼드트리) with Python 본문
728x90
문제
풀이
2630번 색종이 만들기 문제와 같은 유형이다.
답
import sys
N = int(sys.stdin.readline())
quadTree = [list(map(int,sys.stdin.readline().strip())) for _ in range(N)]
def solution(x, y, N) :
image = quadTree[x][y]
for i in range(x, x+N) :
for j in range(y, y+N) :
if image != quadTree[i][j] :
print('(', end='')
solution(x,y,N//2)
solution(x,y+N//2,N//2)
solution(x+N//2,y,N//2)
solution(x+N//2,y+N//2,N//2)
print(')', end='')
return
if image == 0 :
print('0', end='')
else :
print('1', end='')
solution(0,0,N)
728x90
'알고리즘' 카테고리의 다른 글
[백준] 11047번(동전 0) with Python (0) | 2020.11.24 |
---|---|
[백준] 9251번(LCS) with Python (0) | 2020.10.17 |
[백준] 2630번(색종이 만들기) with Python (2) | 2020.10.17 |
[백준] 1759번(암호 만들기) with Python (0) | 2020.10.13 |
[백준] 1793번(타일링) with Python (0) | 2020.10.08 |