반응형
문제 링크: https://www.acmicpc.net/problem/1992
<C++ 소스 코드> 재귀
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
|
#include <iostream>
#include <string>
#include <algorithm>
#include <queue>
#include <vector>
#include <stack>
#include <utility>
#include <climits>
#include <cmath>
#include <deque>
using namespace std;
char board[64][64];
int res[2];
// x,y에서 시작해서 가로 세로 길이가 각각 n인 영상
void solve(int x, int y, int n) {
if (n == 1) {
cout << board[x][y];
return;
}
char flag = board[x][y];
bool run = false;
for (int i = x; i < x + n; i++) {
for (int j = y; j < y + n; j++) {
if (flag != board[i][j]) run = true;
}
}
if (!run) {
cout << board[x][y];
return;
}
cout << "(";
solve(x, y, n / 2);
solve(x, y + n / 2, n / 2);
solve(x + n / 2, y, n / 2);
solve(x + n / 2, y + n / 2, n / 2);
cout << ")";
}
int main(void) {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n; cin >> n;
for (int i = 0; i < n; i++) {
string s; cin >> s;
int s_len = s.length();
for (int j = 0; j < s_len; j++) {
board[i][j] = s[j];
}
}
solve(0, 0, n);
return 0;
}
|
cs |
반응형
'알고리즘 문제풀이 > 백준' 카테고리의 다른 글
[백준 2448번] 별 찍기 - 11 (0) | 2021.12.27 |
---|---|
[백준 2447번] 별 찍기 - 10 (0) | 2021.12.27 |
[백준 2630번] 색종이 만들기 (0) | 2021.12.27 |
[백준 1780번] 종이의 개수 (0) | 2021.12.27 |
[백준 1766번] 문제집 (0) | 2021.12.20 |