상근이는 어렸을 적에 "봄보니 (Bomboni)" 게임을 즐겨했다.
가장 처음에 N×N크기에 사탕을 채워 놓는다. 사탕의 색은 모두 같지 않을 수도 있다. 상근이는 사탕의 색이 다른 인접한 두 칸을 고른다. 그 다음 고른 칸에 들어있는 사탕을 서로 교환한다. 이제, 모두 같은 색으로 이루어져 있는 가장 긴 연속 부분(행 또는 열)을 고른 다음 그 사탕을 모두 먹는다.
사탕이 채워진 상태가 주어졌을 때, 상근이가 먹을 수 있는 사탕의 최대 개수를 구하는 프로그램을 작성하시오.
첫째 줄에 보드의 크기 N이 주어진다. (3 ≤ N ≤ 50)
다음 N개 줄에는 보드에 채워져 있는 사탕의 색상이 주어진다. 빨간색은 C, 파란색은 P, 초록색은 Z, 노란색은 Y로 주어진다.
사탕의 색이 다른 인접한 두 칸이 존재하는 입력만 주어진다.
첫째 줄에 상근이가 먹을 수 있는 사탕의 최대 개수를 출력한다.
import java.util.*;
import java.io.*;
public class Main {
static int N, max=1;
static char[][] arr;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st;
st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
arr = new char[N][N];
for (int i = 0; i < N; i++) {
String s = br.readLine();
for (int j = 0; j < N; j++) {
arr[i][j] = s.charAt(j);
}
}
searchRow();
searchCol();
System.out.println(max);
}
public static void searchRow() {
for (int i = 0; i < N; i++) {
for (int j = 0; j < N-1; j++) {
swap(i, j, i, j+1);
rowCheck();
colCheck();
swap(i, j+1, i, j);
}
}
}
public static void searchCol() {
for (int i = 0; i < N-1; i++) {
for (int j = 0; j < N; j++) {
swap(i, j, i+1, j);
rowCheck();
colCheck();
swap(i+1, j, i, j);
}
}
}
public static void rowCheck() { // 가로 체크.
for (int i = 0; i < N; i++) {
int cnt = 1;
for (int j = 0; j < N-1; j++) {
if (arr[i][j] == arr[i][j+1]) {
cnt++;
max = Math.max(max, cnt);
}
else {
cnt = 1;
}
}
}
}
public static void swap(int x1, int y1, int x2, int y2) {
char tmp = arr[x1][y1];
arr[x1][y1] = arr[x2][y2];
arr[x2][y2] = tmp;
}
public static void colCheck () { // 세로 체크.
for (int i = 0; i < N; i++) {
int cnt = 1;
for (int j = 0; j < N-1; j++) {
if (arr[j][i] == arr[j+1][i]) {
cnt++;
max = Math.max(max, cnt);
}
else {
cnt = 1;
}
}
}
}
}