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
- Java
- 재귀
- BFS
- dfs
- 10597
- 1174
- 몯느 순열
- BOJ
- 백트렉킹
- 코딩테스트
- 백트래킹
- openssl
- 그래프
- 위클리 6주차
- 위클리 챌린지
- DP
- 너비우선탐색
- 프로그래머스
- 39080
- ElementTree
- 복서 정렬하기
- 완전 탐색
- 입실 퇴실
- 부분 수열의 합
- 백준
- 좋은 수열
- 문서자동화
- 순열장난
- 백트랙킹
- 줄어드는 숫자
Archives
개발자-H 입니다.
BOJ - 색종이 만들기 본문
https://www.acmicpc.net/submit/2630/33057661
- 입력 값을 이상하게 받아 시간을 허비했던 문제 ㅡ,.ㅡ;
- 꼭 입력이 배열에 정상적으로 들어갔는지 확인하자.
- 해당 문제는 시간 지점에서 Size 별로 더하면서 4분할 확인 과정을 거치면 풀수있다!
import java.io.*;
import java.util.*;
public class Main {
public static final BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
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++) {
String[] tokens = br.readLine().split(" ");
for (int j = 0; j < tokens.length; j++) {
map[i][j] = Integer.parseInt(tokens[j]);
}
}
dp(map, 0, 0, N);
System.out.println(whiteCount);
System.out.println(blueCount);
}
private static int blueCount = 0;
private static int whiteCount = 0;
private static void dp(int[][] map, int x, int y, int size) {
// System.out.printf("%d %d %d\n", x, y, size);
if (size == 1) {
int value = map[y][x];
if (value == 1) blueCount++;
if (value == 0) whiteCount++;
return;
}
if (isFill(map, x, y, size)) {
return;
}
int nextSize = size / 2;
dp(map, x, y, nextSize);
dp(map, x + nextSize, y, nextSize);
dp(map, x, y + nextSize, nextSize);
dp(map, x + nextSize, y + nextSize, nextSize);
}
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;
}
}
}
if (value == 1) blueCount++;
if (value == 0) whiteCount++;
return true;
}
}
'Algorithm > 문제 풀이' 카테고리의 다른 글
BOJ - 나는야 포켓몬 마스터 이다솜 (0) | 2021.09.08 |
---|---|
BOJ - 종이의 개수 (0) | 2021.09.07 |
BOJ - 최대 힙 (0) | 2021.09.06 |
BOJ - 케빈 베이컨의 6단계 법칙 (0) | 2021.09.05 |
BOJ - 2×n 타일링 (0) | 2021.09.04 |
Comments