728x90
https://www.acmicpc.net/problem/1992
언제 괄호를 출력해야 하는지 확실히 구분해야 한다.
분할정복이 이뤄지는 시점 시작과 끝에만 괄호를 집어 넣을 것.
그 부분 에만 괄호가 들어가야 하고, 그 이외의 시점에는 숫자만 출력하는 것을 확실히 해야 한다.
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
|
#include <iostream>
#include <string>
using namespace std;
string answer="";
int quad[64][64];
int num;
void printquad(int sx, int ex, int sy, int ey){
bool same = true;
int sn = quad[sy][sx];
int dx = ex-sx;
int dy = ey-sy;
if(dx==1 && dy==1) {
cout << sn;
return;
}
for(int i=sy; i<ey; i++) {
for (int j = sx; j < ex ; j++) {
// cout<<sn<<"quad ij is"<<quad[i][j]<<"\n";
if (sn != quad[i][j]) {
// cout<<"false detected!\n";
same = false;
}
}
}
if(same){
cout<<sn;
}
else {
cout<<"(";
printquad(sx, sx + dx / 2, sy, sy + dy / 2);
printquad(sx + dx / 2, ex, sy, sy + dy / 2);
printquad(sx, sx + dx / 2, sy + dy / 2, ey);
printquad(sx + dx / 2, ex, sy + dy / 2, ey);
cout<<")";
}
return;
}
int main(void){
cin>>num;
for(int i=0; i<num; i++){
string s;
cin>>s;
for(int j=0; j<num;j++){
quad[i][j]=s[j]-'0';
// cout<<i<<" "<<j<<" : "<<quad[i][j]<<" ";
}
}
printquad(0,num,0,num);
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
'알고리즘 > 백준' 카테고리의 다른 글
백준 1107 리모컨 - 브루트포스 - c++ (0) | 2020.01.26 |
---|---|
백준 1759 - 암호만들기 (백트래킹) c++ (0) | 2020.01.25 |
백준 11729 하노이 탑 이동순서 - 분할정복 -C++ (0) | 2020.01.24 |
백준 1780 종이의 개수 - 분할정복 - C++ (0) | 2020.01.23 |
백준 2110 공유기 설치 - 이분탐색 C++ (0) | 2020.01.22 |