말하는 컴공감자의 텃밭

백준 3085번 사탕 게임 S2 - 브루트포스 본문

알고리즘/Backjoon - Java

백준 3085번 사탕 게임 S2 - 브루트포스

현콩 2023. 12. 14. 12:00
728x90

 

위치를 바꿔서 연속적인 색의 사탕을 먹는 게임이다.

모든 경우를 따져야한다 판단했고 브루트포스로 풀어봤다

 

가로와 세로 바꾸는 모든 경우의 수를 전부 확인해서 가장 긴 크기를 구했다.

아무것도 바꾸지 않아야 큰 경우도 존재했기에 추가했다.

 

 

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import java.util.*;
 
public class Main { // 백준 11403번 경로 찾기 S1
    public static int N, answer;
    public static char[][] candy;
 
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        N = sc.nextInt();
        candy = new char[N][N];
        answer = 0;
        for (int i = 0; i < N; i++) {
            String s = sc.next();
            for (int j = 0; j < N; j++) {
                candy[i][j] = s.charAt(j);
            }
        }
        find();
 
        for (int i = 0; i < N; i++) {
            for (int j = 0; j < N; j++) {
                if (i < N - 1 && candy[i][j] != candy[i + 1][j]) {
                    char tmp = candy[i][j];
                    candy[i][j] = candy[i + 1][j];
                    candy[i + 1][j] = tmp;
                    find();
                    candy[i + 1][j] = candy[i][j];
                    candy[i][j] = tmp;
                }
                if (j < N - 1 && candy[i][j] != candy[i][j + 1]) {
                    char tmp = candy[i][j];
                    candy[i][j] = candy[i][j + 1];
                    candy[i][j + 1= tmp;
                    find();
                    candy[i][j + 1= candy[i][j];
                    candy[i][j] = tmp;
                }
 
            }
        }
        System.out.println(answer);
    }
 
    public static void find() {
        int cnt = 1;
        for (int i = 0; i < N; i++) {
            cnt = 1;
            for (int j = 0; j < N - 1; j++) {
                if (candy[i][j] == candy[i][j + 1]) {
                    cnt++;
                    answer = Math.max(answer, cnt);
                } else {
                    cnt = 1;
                }
            }
        }
        cnt = 1;
        for (int i = 0; i < N ; i++) {
            cnt = 1;
            for (int j = 0; j < N-1; j++) {
                if (candy[j][i] == candy[j + 1][i]) {
                    cnt++;
                    answer = Math.max(answer, cnt);
                } else {
                    cnt = 1;
                }
            }
        }
    }
}
cs

 

728x90
Comments