반응형
https://www.acmicpc.net/problem/1018
import java.io.*;
import java.util.*;
public class Main {
public static boolean[][] arr;
public static int min = 64;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine(), " ");
int N = Integer.parseInt(st.nextToken());
int M = Integer.parseInt(st.nextToken());
arr = new boolean[N][M];
for(int i = 0 ; i < N ; i++) {
String str = br.readLine();
for(int j = 0 ; j < M ; j++) {
if(str.charAt(j) == 'W') {
arr[i][j] = true;
} else {
arr[i][j] = false;
}
}
}
int N_row = N - 7;
int M_col = M - 7;
for(int i = 0 ; i < N_row ; i++) {
for(int j = 0 ; j < M_col ; j++) {
find(i, j);
}
}
System.out.println(min);
}
public static void find(int x, int y) {
int end_x = x + 8;
int end_y = y + 8;
int cnt = 0;
boolean check = arr[x][y];
for(int i = x ; i < end_x ; i++) {
for(int j = y ; j < end_y ; j++) {
if(arr[i][j] != check) {
cnt++;
}
check = !check;
}
check = !check;
}
cnt = Math.min(cnt, 64 - cnt);
min = Math.min(min, cnt);
}
}
728x90
반응형
'코딩테스트 > 백준' 카테고리의 다른 글
백준 2164 : 카드2 _ 자바 Java (0) | 2023.01.09 |
---|---|
백준 10845 : 큐 _ 자바 Java (0) | 2023.01.09 |
백준 10773 : 제로 _ 자바 java (0) | 2023.01.04 |
백준 1920 : 수 찾기_자바 java(이분탐색) (0) | 2023.01.04 |
백준 11047: 동전 0 자바 java (0) | 2023.01.04 |
댓글