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 |
Tags
- QUICKSTARTGUIDE
- 다이나믹프로그래밍
- 시뮬레이션
- spring
- COSPRO
- dp
- 이젠 골드구현도 어렵네..
- 네트워크플로우
- 알고리즘
- 다익스트라
- YBMCOS
- 취득후기
- deque
- 엘라스틱서치
- COSPROJAVA1급
- 자바PS
- 백준
- 게더타운시작
- 세그먼트트리
- 백준코딩테스트
- BFS
- DFS
- 우선순위큐
- 재귀함수
- 완전탐색
- 01BFS
- PS
- GatherTown
- 구현
- java
Archives
- Today
- Total
공부공간
BOJ - 5014 ) 스타트링크 본문
https://www.acmicpc.net/problem/5014
총 F층짜리 건물에서 S층에서 시작해서 G층으로 가는데
한번의 이동에 +U / -D 만큼의 이동을 할 수 있다.
문제에서 적어도 몇번 가야하는지 물어보았기때문에, 최단거리문제와 동치이고
BFS를 통하여 맨처음 도달했던 횟수를 구하면 출력해준다.
예외적으로 ( +U -D 했을 경우에 건물의 층수 범위를 넘어버린다던가 / 시작할때부터 S==G 인경우는 예외처리해주자 )
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayDeque;
import java.util.StringTokenizer;
public class 스타트링크 {
public static void main(String[] args) throws IOException {
String stair = "use the stairs";
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int f = Integer.parseInt(st.nextToken());
int s = Integer.parseInt(st.nextToken());
int g = Integer.parseInt(st.nextToken());
int u = Integer.parseInt(st.nextToken());
int d = Integer.parseInt(st.nextToken());
ArrayDeque<int []> dq = new ArrayDeque<>();
// int [] = 0 번째에는 내위치, 1번째에는 횟수
boolean visit[] = new boolean[f+1];
int answer = -1;
visit[s] = true;
dq.add(new int[] {s,0});
while(!dq.isEmpty()) {
int now[] = dq.poll();
if(now[0]+u <= f && !visit[now[0]+u]) {
if(now[0]+u==g) {
answer = now[1]+1;
break;
}
visit[now[0]+u] = true;
dq.add(new int[] {now[0]+u, now[1]+1});
}
if(now[0]-d >=1 && !visit[now[0]-d]) {
if(now[0]-d==g) {
answer = now[1]+1;
break;
}
visit[now[0]-d] = true;
dq.add(new int[] {now[0]-d, now[1]+1});
}
}
if(s==g) answer= 0;
System.out.println(answer == -1 ? stair : answer);
}
}
'알고리즘 > 완전탐색(BFS,DFS)' 카테고리의 다른 글
BOJ - 13463 ) Brexit (0) | 2022.01.19 |
---|---|
BOJ - 1584 ) 게임 (0) | 2021.10.17 |
BOJ - 15812 ) 침략자 진아 (0) | 2021.05.13 |
BOJ - 9205 ) 맥주 마시면서 걸어가기 (0) | 2020.11.26 |
BOJ - 1939 ) 중량제한 (0) | 2020.09.28 |
Comments