시간 & 메모리 제한
문제
입력 & 출력
예제 입력
BFS를 이용한 풀이
package com.Back;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.LinkedList;
import java.util.Queue;
import java.util.StringTokenizer;
public class Back_2178 {
static int map[][];
static int row , col;
static int []dx = {-1,1,0,0};
static int []dy = {0,0,-1,1};
static boolean visited[][];
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
col = Integer.parseInt(st.nextToken());
row = Integer.parseInt(st.nextToken());
map = new int[col][row];
visited = new boolean[col][row];
for (int i = 0; i < col; i++) {
st = new StringTokenizer(br.readLine());
String s = st.nextToken();
for (int j = 0; j < row; j++) {
map[i][j] = s.charAt(j)-'0';
}
}
bfs();
System.out.println(map[col-1][row-1]);
}
private static void bfs() {
Queue<point> q = new LinkedList<>();
q.add(new point(0, 0));
visited[0][0]=true;
while(!q.isEmpty()) {
point temp = q.poll();
for (int k = 0; k < 4; k++) {
int xx = temp.x + dx[k];
int yy = temp.y + dy[k];
if(xx<0 || yy<0 || xx>=col || yy>=row) continue;
if(!visited[xx][yy] && map[xx][yy]==1) {
visited[xx][yy]=true;
map[xx][yy]=map[temp.x][temp.y]+1;
q.add(new point(xx, yy));
}
}
}
}
static class point{
int x;
int y;
public point(int x, int y) {
super();
this.x = x;
this.y = y;
}
}
}
- 이 문제는 DFS로 풀면 시간초과가 났습니다...
- 언제 BFS를 써야 하는지 알아야 하는 문제였습니다.
'Algorithm > 백준 알고리즘' 카테고리의 다른 글
백준_1932 정수 삼각형(자바) / DP (0) | 2021.03.30 |
---|---|
백준_11057 오르막 수 (자바) / DP (0) | 2021.03.29 |
백준_14502 연구소(자바) / 조합 + dfs (0) | 2021.03.28 |
백준_1931 회의실 배정 / 그리디 알고리즘(자바) (0) | 2021.03.28 |
백준_1926 그림(자바) / DFS & BFS (0) | 2021.03.26 |