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
71
72
73
|
import java.io.*;
import java.util.*;
public class Main {
static int width, height, garbage;
static int ad[][];
static boolean visit[][];
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int maxvalue = Integer.MIN_VALUE;
int garbagevalue = 0;
width = Integer.parseInt(st.nextToken());
height = Integer.parseInt(st.nextToken());
garbage = Integer.parseInt(st.nextToken());
ad = new int[width+1][height+1];
visit = new boolean[width+1][height+1];
for(int i = 0; i < garbage; i++){
st = new StringTokenizer(br.readLine());
int s1 = Integer.parseInt(st.nextToken());
int s2 = Integer.parseInt(st.nextToken());
ad[s1][s2] = 1;
}
for(int i = 1; i <= width; i++){
for(int j = 1; j <= height; j++){
if(ad[i][j] == 1 && !visit[i][j]) {
garbagevalue = bfs(i, j);
if(garbagevalue > maxvalue){
maxvalue = garbagevalue;
}
}
}
}
System.out.println(maxvalue);
}
static int bfs(int start, int end){
int dx[] = {-1,1,0,0};
int dy[] = {0,0,1,-1};
int count = 0;
Queue<Integer> q = new LinkedList<>();
q.offer(start);
q.offer(end);
visit[start][end] = true;
count += 1;
while(!q.isEmpty()){
int X = q.poll();
int Y = q.poll();
for(int i = 0; i < 4; i++){
int reX = X + dx[i];
int reY = Y + dy[i];
if(isRangeTrue(reX, reY) && !visit[reX][reY] && ad[reX][reY] == 1){
q.offer(reX);
q.offer(reY);
visit[reX][reY] = true;
count++;
}
}
}
return count;
}
static boolean isRangeTrue(int x, int y){
return x >= 0 && x <= width && y >= 0 && y <= height;
}
}
|
cs |
이 문제는 여느 bfs문제와 비슷했다. 다만, 최소 경로 이런 것이 아니라 그 넓이의 최댓값을 비교하는 것이었다.
728x90
'BOJ(Java)' 카테고리의 다른 글
자바(백준) 2178 미로 탐색 (0) | 2021.01.04 |
---|---|
자바(백준) 1926 그림 (0) | 2021.01.04 |
자바(백준) 1697 숨바꼭질 (0) | 2021.01.04 |
자바(백준) 1389 케빈 베이컨의 6단계 법칙 (0) | 2020.12.30 |
자바(백준) 11724 연결 요소의 개수 (0) | 2020.12.30 |