티스토리 뷰
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 | #include <cstdio> int isFilled(int** arr, int size, int x, int y) { int tmp = arr[x][y]; for (int i = 0; i < size; i++) for (int j = 0; j < size; j++) if (tmp != arr[i + x][j + y]) return -1; return tmp; } void divNconq(int** arr, int size, int x, int y) { int all = isFilled(arr, size, x, y); if (all != -1) { printf("%d", all); return; } printf("("); divNconq(arr, size / 2, x, y); divNconq(arr, size / 2, x, y + size / 2); divNconq(arr, size / 2, x + size / 2, y); divNconq(arr, size / 2, x + size / 2, y + size / 2); printf(")"); } int main() { int N; scanf("%d", &N); int** arr = new int* [N]; for (int i = 0; i < N; i++) { arr[i] = new int[N]; for (int j = 0; j < N; j++) scanf("%1d", &arr[i][j]); } divNconq(arr, N, 0, 0); printf("\n"); } | cs |
'algorithm'''problem solve' 카테고리의 다른 글
[백준] 2667 - 단지번호붙이기(설명X) (0) | 2020.05.09 |
---|---|
[백준] 2178 - 미로 탐색(설명X) (0) | 2020.05.09 |
[백준] 1389 - 케빈 베이컨의 6단계 법칙(설명X) (0) | 2020.04.30 |
[백준] 1260 - DFS와 BFS(설명X) (0) | 2020.04.30 |
[백준] 5525 - IOIOI(설명X) (0) | 2020.04.30 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 동적 계획법
- 한화큐셀
- DP
- 브루트포스
- c++
- Dynamic Programming
- BaekJoon
- 백트래킹
- c
- LG
- 알고리즘
- BFS
- 인공지능
- 1932
- 완전탐색
- 컨트리뷰톤
- PyPy3
- 백준
- 카카오
- 코딩
- 파이썬
- DFS
- 정렬
- 피보나치
- webOS
- 구현
- 오픈소스
- 프로그래머스
- 이분탐색
- 플로이드 와셜
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함