본문 바로가기
알고리즘/백준

[Java] BOJ 16930번 달리기

by 컴공맨 2021. 5. 16.
 

16930번: 달리기

진영이는 다이어트를 위해 N×M 크기의 체육관을 달리려고 한다. 체육관은 1×1 크기의 칸으로 나누어져 있고, 칸은 빈 칸 또는 벽이다. x행 y열에 있는 칸은 (x, y)로 나타낸다. 매 초마다 진영이는

www.acmicpc.net


풀이

출발점에서 도착지에 도착할 때까지 BFS를 수행하게 하여 해결했습니다.

이때, BFS를 수행할때, 최대 K개의 칸을 이동할 수 있으므로 1칸 ~ K개의 칸까지의 모든 경우를 전부 큐에 담에 BFS를 돌리게 해야 합니다. 또한, visited 배열을 Integer.MAX_VALUE 즉, 가장 큰 값으로 초기화하고 최솟값을 저장하기 때문에 이미 방문을 했더라도 방문 횟수가 더 크다면 중지시키고 작다면 방문을 할 수 있게 해주어야 합니다.


코드

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.Queue;
import java.util.StringTokenizer;

public class Main {
	public static class Info {
		int y, x;

		public Info(int y, int x) {
			super();
			this.y = y;
			this.x = x;
		}
	}
	
	public static int N, M, K, answer;
	public static Info start, end;
	public static int[][] visited;
	public static char[][] map;
	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());
		K = Integer.parseInt(st.nextToken());
		
		map = new char[N][M];
		visited = new int[N][M];
		
		
		for (int i = 0; i < N; ++i) {
			st = new StringTokenizer(br.readLine(), " ");
			map[i] = st.nextToken().toCharArray();
			
			Arrays.fill(visited[i], Integer.MAX_VALUE);
		}
		
		st = new StringTokenizer(br.readLine(), " ");
		start = new Info(Integer.parseInt(st.nextToken()), Integer.parseInt(st.nextToken()));
		end = new Info(Integer.parseInt(st.nextToken()), Integer.parseInt(st.nextToken()));
		
		bfs();
		answer = visited[end.y - 1][end.x - 1] ;
		
		System.out.println((answer == Integer.MAX_VALUE) ? -1 : answer);
	}
	
	public static int[] dy = {-1, 1, 0, 0};
	public static int[] dx = {0, 0, -1, 1};
	public static void bfs() {
		Queue<Info> q = new LinkedList<Info>();
		q.offer(new Info(start.y - 1, start.x - 1));
		visited[start.y - 1][start.x - 1] = 0;
		
		while (!q.isEmpty()) {
			Info info = q.poll();
			
			if (info.y == end.y - 1 && info.x == end.x - 1) {
				return;
			}
			
			for (int i = 0; i < 4; ++i) {
				int ny = info.y;
				int nx = info.x;
				for (int j = 0; j < K; ++j) {
					ny += dy[i];
					nx += dx[i];
					
					if (ny < 0 || nx < 0 || ny >= N || nx >= M) {
						break;
					}
					
					if (map[ny][nx] == '#' || visited[ny][nx] < visited[info.y][info.x] + 1) {
						break;
					}
					
					if (visited[ny][nx] == Integer.MAX_VALUE && map[ny][nx] == '.') {
						visited[ny][nx] = visited[info.y][info.x] + 1;
						q.offer(new Info(ny, nx));
					}
				}
			}
		}
	}
}

 

pyo7410/Algorithm

1일 1커밋을 목표로! Contribute to pyo7410/Algorithm development by creating an account on GitHub.

github.com

 

'알고리즘 > 백준' 카테고리의 다른 글

[Java] BOJ 12865번 평범한 배낭  (1) 2021.05.18
[Java] BOJ 3190번 뱀  (1) 2021.05.17
[Java] BOJ 10026번 적록색약  (0) 2021.05.14
[Java] BOJ 14500번 테트로미노  (0) 2021.05.13
[Java] BOJ 15686번 치킨 배달  (0) 2021.05.12