포인터 클래스 하나 만들고
BFS 두개 로 해결
3번 틀렸는데.. 처음에는 런타임 에러 두번 메모리 초과 1번 났음.
몇번 수정 끝에 아래처럼 하여 합격 함.
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
import java.util.LinkedList;
import java.util.Queue;
public class Main {
static int[] dx = { -1, 1, 0, 0 };
static int[] dy = { 0, 0, -1, 1 };
static boolean visit[][];
static Queue<Point> q;
static char map[][];
static int okCnt,noCnt;
static int mapCopy[][];
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
map = new char[N][N];
mapCopy = new int[N][N];
for (int i = 0; i < map.length; i++) {
for (int j = 0; j < str.length(); j++) {
map[i][j] = str.charAt(j);
}
}
//방문, 큐 초기화
visit = new boolean[N][N];
q = new LinkedList<>();
okCnt = 0;
// 정상적
for(int i = 0; i<map.length; i++) {
for(int j = 0 ; j<map[i].length; j++) {
if(visit[i][j] == false) {
okCnt++;
BFS(i, j);
}
}
}
System.out.print(okCnt+" ");
//방문, 큐 초기화
visit = new boolean[N][N];
q = new LinkedList<>();
noCnt = 0;
// 적록이상
for(int i = 0; i<map.length; i++) {
for(int j = 0 ; j<map[i].length; j++) {
if(visit[i][j] == false) {
noCnt++;
BFS1(i, j);
}
}
}
System.out.println(noCnt);
}
private static void BFS(int x, int y) {
// System.out.println(x + " : " + y);
q.add(new Point(x,y));
visit[x][y]= true;
while (!q.isEmpty()) {
Point p = q.remove();
//visit[p.x][p.y]= true;
for(int i = 0; i < 4; i++) {
int xx = p.x + dx[i];
int yy = p.y + dy[i];
// 색맹이 아닐때 구역이 어딘지 확인 가능.
// mapCopy[p.x][p.y] = okCnt;
if(xx >= 0 && yy >= 0 && xx < map.length && yy < map[0].length && map[xx][yy] == map[p.x][p.y] && !visit[xx][yy]) {
visit[xx][yy]= true;
q.add(new Point(xx,yy));
}
}
}
}
private static void BFS1(int x, int y) {
// System.out.println(x + " : " + y);
q.add(new Point(x,y));
visit[x][y] = true;
while (!q.isEmpty()) {
Point p = q.remove();
//visit[p.x][p.y] = true;
for(int i = 0 ; i<4; i++) {
int xx = p.x + dx[i];
int yy = p.y + dy[i];
// 색맹일때 구역이 어딘지 확인 가능.
// mapCopy[p.x][p.y] = noCnt;
if(xx >= 0 && yy >= 0 && xx < map.length && yy < map[0].length && !visit[xx][yy]) {
if(map[xx][yy] == map[p.x][p.y] || (map[xx][yy] == 'R' && map[p.x][p.y]== 'G') || (map[xx][yy] == 'G' && map[p.x][p.y]== 'R')) {
visit[xx][yy]= true;
q.add(new Point(xx,yy));
}
}
}
}
}
public static class Point{
int x = 0;
int y = 0;
Point(int _x, int _y){
x = _x;
y = _y;
}
}
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
'it > 알고리즘' 카테고리의 다른 글
백준 1058 - 친구 (0) | 2019.12.17 |
---|---|
백준 1012 - 유기농 배추 (0) | 2019.12.17 |
백준 11057 - 오르막 수 (0) | 2019.09.01 |
백준 1309 - 동물원 (0) | 2019.09.01 |
백준 4485 녹색 옷 입은 애가 젤다 (0) | 2018.11.24 |