#유형 : 그래프 탐색
#난이도 : 골드 V
# https://ukyonge.tistory.com/170 문제에서 순간이동이 시간이 안늘어난다는 조건이 바뀐 문제이다. 따라서 그 부분만 수정하면 바로 해결 가능하다.
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
|
package bj;
import java.awt.Point;
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 p13549 {
static int N,K,cnt,min=Integer.MAX_VALUE;
static int arr[] = new int[200001];
static boolean visit[] = new boolean[200001];
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());
K = Integer.parseInt(st.nextToken());
bfs();
System.out.println(min);
}
private static void bfs() {
// TODO Auto-generated method stub
Queue<Point> queue = new LinkedList<Point>();
queue.add(new Point(N,0));
while(!queue.isEmpty()) {
Point po = queue.poll();
visit[po.x] = true;
if(po.x == K) {
min = Math.min(min, po.y);
}
// 0초 후에 2*X
if(po.x * 2 <= 100000 && !visit[po.x*2]) {
queue.add(new Point(po.x*2, po.y));
}
// 1초 후에 X+1
if(po.x + 1 <= 100000 && !visit[po.x+1]) {
queue.add(new Point(po.x+1, po.y+1));
}
// 1초 후에 X-1
if(po.x -1 >= 0 && !visit[po.x-1]) {
queue.add(new Point(po.x-1, po.y+1));
}
}
}
}
|
cs |
'백준' 카테고리의 다른 글
#백준_16593 A → B - Java 자바 (0) | 2020.04.27 |
---|---|
#백준_1600 말이 되고픈 원숭이 - Java 자바 (0) | 2020.04.26 |
#백준_12851 숨바꼭질 2 - Java 자바 (0) | 2020.04.24 |
#백준_2263 트리의 순회 - Java 자바 (0) | 2020.04.23 |
#백준_5639 이진 검색 트리 - Java 자바 (0) | 2020.04.22 |