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
|
import java.io.*;
import java.util.*;
public class Main {
static int n,m;
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 component = 0;
int imagecount = 0;
int minvalue = 0;
n = Integer.parseInt(st.nextToken());
m = Integer.parseInt(st.nextToken());
ad = new int [n][m];
visit = new boolean[n][m];
for(int i = 0; i < n; i++){
st = new StringTokenizer(br.readLine());
for(int j = 0; j < m; j++){
ad[i][j] = Integer.parseInt(st.nextToken());
}
}
for(int i = 0; i < n; i++){
for(int j = 0; j < m; j++){
if(!visit[i][j] && ad[i][j] == 1){
imagecount = bfs(i,j,0);
component++;
if(imagecount > minvalue)
minvalue = imagecount;
}
}
}
System.out.println(component);
System.out.println(minvalue);
}
static int bfs(int x, int y, int count){
int dx[] = {-1,1,0,0};
int dy[] = {0,0,1,-1};
Queue<Integer> q = new LinkedList<>();
q.offer(x);
q.offer(y);
visit[x][y] = true;
count++;
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) && ad[reX][reY] == 1 && !visit[reX][reY]) {
q.offer(reX);
q.offer(reY);
visit[reX][reY] = true;
count++;
}
}
}
return count;
}
static boolean isRangeTrue(int x, int y){
return x >= 0 && x < n && y >= 0 && y < m;
}
}
|
cs |
처음에 이 문제를 제출했을 때, 틀렸던 이유는 minvalue를 0으로 설정해놓지 않고, Integer.MIN_VALUE로 했기 때문이다. 왜냐하면 문제에서 그림이 존재하지 않을 경우에 가장 넓은 그림의 넓이를 0이라고 설정했기 때문에, 만약 위와 같이 변수를 설정하고, 그림이 존재하지 않는다면 가장 넓은 그림은 Integer.MIN_VALUE값이 나오게 된다. 그래서 minvalue값을 처음에 0으로 설정해야 문제가 맞게 된다.
728x90
'BOJ(Java)' 카테고리의 다른 글
자바(백준) 5567 결혼식 (0) | 2021.01.04 |
---|---|
자바(백준) 2178 미로 탐색 (0) | 2021.01.04 |
자바(백준) 1743 음식물 피하기 (0) | 2021.01.04 |
자바(백준) 1697 숨바꼭질 (0) | 2021.01.04 |
자바(백준) 1389 케빈 베이컨의 6단계 법칙 (0) | 2020.12.30 |