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 | 29 | 30 | 31 |
Tags
- 문서자동화
- 39080
- 완전 탐색
- 백트랙킹
- BFS
- 너비우선탐색
- 입실 퇴실
- openssl
- 백트래킹
- dfs
- 위클리 6주차
- 위클리 챌린지
- ElementTree
- 10597
- BOJ
- 백준
- 복서 정렬하기
- 부분 수열의 합
- 프로그래머스
- Java
- 몯느 순열
- 백트렉킹
- 1174
- 순열장난
- 재귀
- 코딩테스트
- 줄어드는 숫자
- 그래프
- 좋은 수열
- DP
Archives
개발자-H 입니다.
BOJ - 쿼드트리 본문
https://www.acmicpc.net/problem/1992
- 색종이 만들기 문제에서 백트렉킹이 섞인 문제이다.
- 재귀는 스텍의 성질을 가지고 있는데 이를 이용하여 괄호 치기를 하면 된다.
import java.io.*;
import java.util.*;
public class Main {
public static final BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
private static StringBuilder builder = new StringBuilder();
public static void main(String[] args) throws Exception {
int N = Integer.parseInt(br.readLine());
int[][] map = new int[N + 1][N + 1];
//입력 처리
for (int i = 0; i < N; i++) {
char[] chars = br.readLine().toCharArray();
for (int j = 0; j < chars.length; j++) {
map[i][j] = Character.getNumericValue(chars[j]);
}
}
dp(map, 0, 0, N);
System.out.println(builder.toString());
}
private static void dp(int[][] map, int x, int y, int size) {
if (size == 1) {
builder.append(map[y][x]);
return;
}
if (isFill(map, x, y, size)) {
builder.append(map[y][x]);
return;
}
//4분할
int nextSize = size / 2;
builder.append("(");
dp(map, x, y, nextSize);
dp(map, x + nextSize, y, nextSize);
dp(map, x, y + nextSize, nextSize);
dp(map, x + nextSize, y + nextSize, nextSize);
builder.append(")");
}
/**
* 같은 원소로 채워져 있는지 확인하는 함수
*/
private static boolean isFill(int[][] map, int x, int y, int size) {
int value = map[y][x];
for (int i = y; i < y + size; i++) {
for (int j = x; j < x + size; j++) {
if (value != map[i][j]) {
return false;
}
}
}
return true;
}
}
'Algorithm > 문제 풀이' 카테고리의 다른 글
프로그래머스 - 복서 정렬 하기 (6주차) (0) | 2021.09.12 |
---|---|
BOJ - 프린터 큐 (0) | 2021.09.09 |
BOJ - 나는야 포켓몬 마스터 이다솜 (0) | 2021.09.08 |
BOJ - 종이의 개수 (0) | 2021.09.07 |
BOJ - 색종이 만들기 (0) | 2021.09.07 |
Comments