Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 웹어플리케이션 서버
- 백준 16236
- spring security
- 백준 15685
- re.split
- JVM
- 파이썬
- 백준 파이썬
- Spring
- 백준 16719
- spring oauth
- springboot
- Kotlin
- Spring Boot
- 프로그래머스
- 백준 19238
- 백준 17779
- java
- MySQL
- 백준
- with recursive
- 백준 17626
- Coroutine
- MSA
- sql 기술면접
- 프로래머스
- spring cloud
- JPA
- java 기술면접
- 백준 16235
Archives
- Today
- Total
목록백준 2630 (1)
시작이 반
[백준] 2630번 (python 파이썬)
Divide and Conquer에 대한 문제이다. 1. 해당 종이가 일괄된 색이 아니면 4등분을 한다. 2. 4등분된 종이를 다시 검사한다. 1, 2를 일괄된 색일때까지 반복한다. 처음 푼방법 종이를 모든 수에 대해 검사하고 4등분된 종이를 list로 만들어서 다시 재귀를 돌렸다. n = int(input()) graph = [list(map(int, input().split())) for _ in range(n)] blue_count = 0 white_count = 0 def makePaper(graph): if validPaper(graph): return left_top = list() right_top = list() left_bottom = list() right_bottom = list() ..
알고리즘/백준
2021. 3. 6. 21:17