일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- mysql hy000 에러
- StringBuilder
- 18111번 마인크래프트 - java 구현
- 백준 1197번 최소 스패닝 트리 - java
- toUpperCase
- 최소 힙 1927
- 백준 2473번 세 용액 - java
- Java
- 백준 1043번 거짓말 - java 분리 집합
- dp
- ac 5430번
- kotlin
- 백준 1806번 부분합 java
- 백준 1647번 도시 분할 계획 - java
- 백준 14938번 서강그라운드
- append
- 백준 3190번
- replace()
- StringTokenizer
- HashSet
- hash
- 코틀린기초
- HashMap
- 프로그래머스
- map
- 백준 1541
- 프로그래머스 java
- 프로그래머스 자바
- 백준 2467번 용액 자바 - 이분탐색
- Stack
Archives
- Today
- Total
말하는 컴공감자의 텃밭
백준 2589번 보물섬 G5 - BFS 본문
728x90
문제를 잘 읽어도 보물이 없다. 땅과 바다 뿐이다.
눈이 침침한가.
보물은 육지에서 서로 빠르게 가도 가장~~ 먼 위치에 묻혀있다고 한다.
결국 L의 범위를 탐색해서 그 안에서 가장 먼 거리를 찾으면 된다.
최단거리는? BFS 손흥민 봉준호 제이팍 레스고
BFS는 탐색안된 영역을 찾아 시작점을 잡아주고 B와 W를 구분한 뒤
BFS 내부에서
Maxdist= Math.max(Maxdist,dist);
를 통해 최대 거리를 찾아주면 된다.
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 | import java.io.*; import java.util.*; public class Main { // Boj_2589_보물섬 static int N, M, answer, start_x, start_y; static int[] dx = {0,0,-1,1}; static int[] dy = {1,-1,0,0}; static char[][] arr; 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()); N = Integer.parseInt(st.nextToken()); M = Integer.parseInt(st.nextToken()); arr = new char[N][M]; for (int i = 0; i < N; i++) { String str = br.readLine(); for (int j = 0; j < M; j++) { arr[i][j] = str.charAt(j); } } for (int i = 0; i < N; i++) { for (int j = 0; j < M; j++) { if(arr[i][j] == 'W') continue; answer = Math.max(answer, bfs(i,j)); } } System.out.println(answer); } public static int bfs(int x, int y) { visit = new boolean[N][M]; Queue<int[]> que = new LinkedList<>(); que.add(new int[]{x, y, 0}); visit[x][y] = true; int Maxdist = 0; while (!que.isEmpty()) { int[] now = que.poll(); int now_x = now[0]; int now_y = now[1]; int dist = now[2]; Maxdist= Math.max(Maxdist,dist); for (int i = 0; i < 4; i++) { int next_x = now_x + dx[i]; int next_y = now_y + dy[i]; if (range_chk(next_x, next_y) && !visit[next_x][next_y] && arr[next_x][next_y] != 'W') { que.add(new int[]{next_x, next_y, dist + 1}); visit[next_x][next_y] = true; } } } return Maxdist; } public static boolean range_chk(int x, int y) { return 0 <= x && 0 <= y && x < N && y < M; } } | cs |
큐에 배열을 넣어도~ 클래스를 짜서 넣어도~ 뭐든 상관은 없다.
728x90
'알고리즘 > Backjoon - Java' 카테고리의 다른 글
백준 2206번 벽 부수고 이동하기 G3 - BFS (1) | 2024.04.23 |
---|---|
백준 2660번 회장뽑기 G5 - BFS (3) | 2024.04.17 |
백준 8979번 올림픽 S5 - 정렬 (0) | 2024.04.17 |
백준 1967번 트리의 지름 G4 - 트리, dfs (0) | 2024.04.17 |
백준 1240번 노드사이의 거리 G5 - bfs (0) | 2024.04.17 |
Comments