Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 리소스 서버
- JPA
- 백기선
- 브루트포스
- 리소스핸들러
- 외부설정
- WebApplication Type
- @Profile
- 스프링 부트
- application.properties
- rest api
- EnableAutoConfiguration
- OAuth2
- 스프링부트
- 정적 리소스
- JsonSerializer
- 알고리즘
- Application Runner
- webjar
- HATEOAS
- AuthenticationPrincipal
- Application Argument
- HttpMessageConverters
- Application Event
- Spring Security
- cors
- 다익스트라
- 백준
- @ConfigurationProperties
- 백트래킹
Archives
- Today
- Total
아카이브
[백준]13549.숨바꼭질3 본문
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.LinkedList;
import java.util.Queue;
import java.util.StringTokenizer;
/*
숨바꼭질 3
*/
public class Main {
static int N, K;
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());
K = Integer.parseInt(st.nextToken());
Queue<Node> queue = new LinkedList<>();
visit = new boolean[100001]; // 0 ~ 100,000
queue.add(new Node(N, 0)); // 시작점
int min = Integer.MAX_VALUE;
while (!queue.isEmpty()) {
Node cur = queue.poll();
if (cur.x == K) {
min = Math.min(min, cur.time);
break;
}
if (visit[cur.x]) continue;
visit[cur.x] = true;
int back = cur.x - 1; // 반례가 있다
int jump = cur.x * 2;
int front = cur.x + 1;
// 범위체크 후 방문체크 순서 고려
if ( isRange(back) && !visit[back]) {
queue.add(new Node(back, cur.time + 1));
}
if (isRange(jump) && !visit[jump]) {
queue.add(new Node(jump, cur.time));
}
if ( isRange(front) && !visit[front]) {
queue.add(new Node(front, cur.time + 1));
}
}
System.out.println(min);
}
static boolean isRange(int x) {
return 0 <= x && x <= 100000;
}
static class Node {
int x, time;
public Node(int x, int time) {
this.x = x;
this.time = time;
}
}
}
'자료구조&알고리즘' 카테고리의 다른 글
[백준]1874. 스택 수열 (0) | 2021.01.09 |
---|---|
[백준]1987.알파벳 (0) | 2020.09.14 |
[백준]1753.최단경로 (0) | 2020.09.14 |
[백준]1238.파티 (0) | 2020.09.14 |
[백준]1389.케빈 베이컨의 6단계 법칙 (0) | 2020.09.11 |