https://www.acmicpc.net/problem/1780
1. 아이디어
이전 색종이 만들기에서 4등분이 9등분으로 바뀐 문제로 재귀 과정에서 각 꼭짓점 설정만 바꿔주면 간단하게 해결할 수 있다.([코딩테스트 준비/백준] - [백준] 2630번 - 색종이 만들기 [Java])
2. 문제풀이
아이디어 그대로 구현했다.
3. 코드
import java.io.*;
import java.util.*;
public class Main {
private static int[][] map;
private static int cntMinus = 0;
private static int cntZero = 0;
private static int cntPlus = 0;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st;
int N = Integer.parseInt(br.readLine());
map = new int[N][N];
for (int i = 0; i < N; i++) {
st = new StringTokenizer(br.readLine());
for (int j = 0; j < N; j++) {
map[i][j] = Integer.parseInt(st.nextToken());
}
}
recur(0, 0, N, N);
System.out.println(cntMinus);
System.out.println(cntZero);
System.out.println(cntPlus);
}
private static void recur(int r1, int c1, int r2, int c2) {
if (isNotSame(r1, c1, r2, c2)) {
int midR1 = r1 + (r2 - r1) / 3;
int midC1 = c1 + (c2 - c1) / 3;
int midR2 = r1 + (r2 - r1) / 3 * 2;
int midC2 = c1 + (c2 - c1) / 3 * 2;
recur(r1, c1, midR1, midC1);
recur(r1, midC1, midR1, midC2);
recur(r1, midC2, midR1, c2);
recur(midR1, c1, midR2, midC1);
recur(midR1, midC1, midR2, midC2);
recur(midR1, midC2, midR2, c2);
recur(midR2, c1, r2, midC1);
recur(midR2, midC1, r2, midC2);
recur(midR2, midC2, r2, c2);
}
}
private static boolean isNotSame(int r1, int c1, int r2, int c2) {
int num = map[r1][c1];
for (int r = r1; r < r2; r++) {
for (int c = c1; c < c2; c++) {
if (map[r][c] != num) return true;
}
}
if (num == -1) cntMinus++;
else if (num == 1) cntPlus++;
else cntZero++;
return false;
}
}
4. 후기
'코딩테스트 준비 > 백준' 카테고리의 다른 글
[백준] 17478번 - 재귀함수는 뭔가요? [Java] (0) | 2025.01.10 |
---|---|
[백준] 1629번 - 곱셈 [Java] (0) | 2025.01.10 |
[백준] 2630번 - 색종이 만들기 [Java] (0) | 2025.01.09 |
[백준] 1269번 - 대칭 차집합 [Java] (0) | 2025.01.09 |
[백준] 1822번 - 차집합 [Java] (0) | 2025.01.09 |