문제 출처
https://www.acmicpc.net/problem/5014
접근 방식 및 풀이
- BFS , DFS 방법 모두 사용할 수 있지만, DFS는 시간초과로 BFS로 해결했다.
소스 코드
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
|
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class Main {
static int[] map;
static boolean[] visited;
static int F,S,G,U,D;
static int count = 0;
static Queue<Integer> q = new LinkedList<Integer>();
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
F = Integer.parseInt(st.nextToken());
S = Integer.parseInt(st.nextToken());
G = Integer.parseInt(st.nextToken());
U = Integer.parseInt(st.nextToken());
D = Integer.parseInt(st.nextToken());
map = new int[F+1];
visited = new boolean[F+1];
bfs(S);
if(map[G] == -1 && S!=G) {
System.out.println("use the stairs");
} else {
System.out.println(map[G]+1);
}
}
static void bfs(int s) {
q.add(s);
visited[s] = true;
while(!q.isEmpty()) {
count++;
int t = q.remove();
if(t == G) {
return;
}
if(t+U <= F && !visited[t+U]) {
q.add(t+U);
map[t+U] = map[t] + 1;
visited[t+U] = true;
}
if(t-D >= 1 && !visited[t-D]) {
q.add(t-D);
map[t-D] = map[t] + 1;
visited[t-D] = true;
}
}
}
}
|
결과
'Competition > Baekjoon' 카테고리의 다른 글
[백준] 6603번 자바 로또 (0) | 2020.04.27 |
---|---|
[백준] 2186번 자바 문자판 (0) | 2020.04.24 |
[백준] 2003번 자바 수들의합2 (0) | 2020.04.21 |