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