문제: https://www.acmicpc.net/problem/1992
분할정복 문제입니다. 시작점과 크기를 인수로 받아 해당 영역이 모두 같은지 확인을 한 후 같지 않다면 4 구역으로 분할해 재귀 호출을 하여 풀어봤습니다.
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | #pragma warning (disable:4996) #include <cstdio> #include <cstring> #include <climits> #include <algorithm> using namespace std; int n; bool tree[65][65]; void compress(int startY, int startX, int size) { bool start = tree[startY][startX]; bool isSame = true; for (int y = startY; y < startY + size; y++) { for (int x = startX; x < startX + size; x++) { if (tree[y][x] != start) { isSame = false; break; } } if (!isSame) break; } if (isSame) { printf ("%d", start); } else { printf("%c", '('); int newSize = size / 2; compress(startY, startX, newSize); compress(startY, startX + newSize, newSize); compress(startY + newSize, startX, newSize); compress(startY + newSize, startX + newSize, newSize); printf("%c", ')'); } } int main() { scanf("%d", &n); for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { char c; scanf(" %c", &c); tree[i][j] = c - '0'; } } compress(0, 0, n); return 0; } | cs |
'Algorithm, Data structure > Solved Algorithmic Problem' 카테고리의 다른 글
BAEKJOON 1158 - 조세퍼스 문제 (0) | 2017.12.21 |
---|---|
BAEKJOON 2343 - 기타 레슨 (0) | 2017.09.16 |
BAEKJOON 2792 - LJUBOMORA (0) | 2017.01.05 |
BAEKJOON 1072 - 게임 (0) | 2017.01.02 |
BAEKJOON 3079 - AERODROM (0) | 2017.01.01 |