🌞Algorithm/🔥Baekjoon

[Baekjoon] 26999_Satellite Photographs

뿌야._. 2024. 9. 30. 14:00
문제(출처: https://www.acmicpc.net/problem/26999)

< Satellite Photographs >

 

문제 풀이 

 

bfs를 사용하여 문제를 해결한다.

 

 my solution (Java)

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.LinkedList;
import java.util.Queue;
import java.util.StringTokenizer;
public class _26999_ { // Satellite Photographs
	static boolean arr[][];
	static int dx[] = { -1, 1, 0, 0 };
	static int dy[] = { 0, 0, -1, 1 };
	public static void main(String[] args) throws IOException {
		BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
		StringTokenizer st = new StringTokenizer(bf.readLine());
		int W = Integer.parseInt(st.nextToken());
		int H = Integer.parseInt(st.nextToken());
		arr = new boolean[H][W];
		for (int i = 0; i < H; i++) {
			String str = bf.readLine();
			for (int j = 0; j < W; j++) {
				if (str.charAt(j) == '.') {
					arr[i][j] = true;
				}
			}
		}
		int result = 0;
		for (int i = 0; i < H; i++) {
			for (int j = 0; j < W; j++) {
				if (!arr[i][j]) {
					result = Math.max(bfs(i, j), result);
				}
			}
		}
		System.out.println(result);
	}
	private static int bfs(int i, int j) {
		Queue<int[]> queue = new LinkedList<>();
		queue.add(new int[] { i, j });
		arr[i][j] = true;
		int cnt = 1;
		while (!queue.isEmpty()) {
			int temp[] = queue.poll();
			for (int k = 0; k < 4; k++) {
				int x = temp[0] + dx[k];
				int y = temp[1] + dy[k];
				if (x >= 0 && x < arr.length && y >= 0 && y < arr[0].length && !arr[x][y]) {
					cnt += 1;
					arr[x][y] = true;
					queue.add(new int[] { x, y });
				}
			}
		}
		return cnt;
	}
}
변수)
arr : 배열
dx, dy : 상하좌우
W, H : 배열 크기
result : 정답

 

배열 크기를 입력받고 배열 크기만큼 배열 정보를 입력받는다. 값이. 인 경우 true로 저장한다. 배열을 탐색하면서 아직 방문하지 않은 곳이라면 bfs 탐색을 통해 *의 최대 넓이를 구한다. 최종 result를 출력한다.

 

bfs (시작 좌표)

큐에 시작 좌표를 저장하고 시작 위치를 true로 저장한다. * 넓이를 1로 저장하고 queue가 빌 때까지 다음 과정을 반복한다. 

1) queue poll

2) 4방향을 탐색하며 배열 범위 안이며 아직 방문하지 않은 곳이라면 cnt+1과 방문 표시 및 queue에 추가한다. 

최종 cnt를 반환한다.



 

'🌞Algorithm > 🔥Baekjoon' 카테고리의 다른 글

[Baekjoon] 29634_Hotel  (0) 2024.10.04
[Baekjoon] 14546_Prison Break  (0) 2024.10.02
[Baekjoon] 6229_Bronze Lilypad Pond  (0) 2024.09.27
[Baekjoon] 6080_Bad Grass  (0) 2024.09.26
[Baekjoon] 11448_Ga  (1) 2024.09.25