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 |
Tags
- 웹어플리케이션 서버
- 프로래머스
- 백준
- re.split
- MySQL
- MSA
- 백준 16236
- spring security
- sql 기술면접
- Kotlin
- 백준 파이썬
- Spring
- JPA
- 백준 16719
- 백준 15685
- 백준 17626
- java
- Coroutine
- 백준 16235
- java 기술면접
- 프로그래머스
- spring cloud
- spring oauth
- 백준 19238
- springboot
- with recursive
- JVM
- 백준 17779
- Spring Boot
- 파이썬
Archives
- Today
- Total
목록백준 1992 (1)
시작이 반
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/Bo6yv/btqZtAOCSMr/10n9y2eOmQxiL5ulcvLfMK/img.png)
백준 2630문제와 같은 문제이다. tmdrl5779.tistory.com/101 [백준] 2630번 (python 파이썬) Divide and Conquer에 대한 문제이다. 1. 해당 종이가 일괄된 색이 아니면 4등분을 한다. 2. 4등분된 종이를 다시 검사한다. 1, 2를 일괄된 색일때까지 반복한다. 처음 푼방법 종이를 모든 수에 대해 검사 tmdrl5779.tistory.com 출력부분만 고려하면 된다. n = int(input()) graph = [list(map(int, input())) for _ in range(n)] def dnc(x, y, n): check = graph[x][y] for i in range(x, x + n): for j in range(y, y + n): if chec..
알고리즘/백준
2021. 3. 6. 22:18