티스토리 뷰
728x90
문제
https://www.acmicpc.net/problem/13549
풀이 및 소스코드
다익스트라를 이용해 풀었다 !
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.PriorityQueue;
import java.util.StringTokenizer;
class Main {
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int n = Integer.parseInt(st.nextToken());
int k = Integer.parseInt(st.nextToken());
int[] dist = new int[100001];
Arrays.fill(dist, Integer.MAX_VALUE);
//최댓값으로 초기화
daji(n, k, dist);
System.out.println(dist[k]);
}
public static void daji(int n, int k, int[] dist) {
PriorityQueue<Node> q = new PriorityQueue<>();
q.add(new Node(n, 0));
dist[n] = 0;
while(!q.isEmpty()) {
Node now = q.poll();
if(now.time>dist[now.nowx]) continue;
//지금 경과된 시간보다 먼저 도착한 적이 있다면 더이상 볼 필요가 없으므로 컨티뉴 해준다.
if(now.time>dist[k]) continue;
//도착지에 저장되어 있는 시간보다 큰 시간이라면 더 이상 보는 이유가 없으므로 컨티뉴 해준다.
if(now.nowx+1<100001&&now.time+1<dist[now.nowx+1]) {
dist[now.nowx+1] = now.time+1;
q.add(new Node(now.nowx+1, now.time+1));
}
if(now.nowx-1>=0&&now.time+1<dist[now.nowx-1]) {
dist[now.nowx-1] = now.time+1;
q.add(new Node(now.nowx-1, now.time+1));
}
if(now.nowx*2<100001&&now.time<dist[now.nowx*2]) {
dist[now.nowx*2] = now.time;
q.add(new Node(now.nowx*2, now.time));
}
}
}
}
class Node implements Comparable<Node>{
int nowx, time;
public Node(int nowx, int time) {
super();
this.nowx = nowx;
this.time = time;
}
@Override
public int compareTo(Node o) {
// TODO Auto-generated method stub
return this.time-o.time;
}
}
반응형
'Coding - Algo > Java' 카테고리의 다른 글
[백준] 1922번:네트워크 연결 (Java 자바) (0) | 2021.09.08 |
---|---|
[백준] 4485번:녹색 옷 입은 애가 젤다지? (Java 자바) (0) | 2021.09.06 |
[백준] 8320번:직사각형을 만드는 방법 (Java 자바) (0) | 2021.08.30 |
[백준] 2851번:슈퍼 마리오 (Java 자바) (0) | 2021.08.30 |
[백준] 1592번:영식이와 친구들 (Java 자바) (0) | 2021.08.30 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- swea 타일링 자바
- 1699 자바
- 3996 자바
- poker swea
- 파이썬 풀이
- 메뉴리뉴얼 풀이
- 우분투
- union-find
- 백준
- swea 타일링
- 백준 풀이
- ubuntu
- 백준 dp 문제
- 프로그래머스 더 맵게
- 더 맵게
- swea 4070 타일링
- swea 1240
- 타일링 자바
- 프로그래머스
- 백준 17144
- SSAFY
- 1240 자바
- 삼성청년SW아카데미
- 백준파이썬
- 프로그래머스 파이썬
- swea 1240 자바
- SWEA
- 파이썬
- yoloV3
- 프로그래머스 자바
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함