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
- 투포인터
- c++
- 알고리즘
- 코딩테스트
- 스마일게이트
- 서버개발캠프
- BaekJoon
- 보석쇼핑
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 중반부
- 삼성 #코테 #2020상반기 #c++
- LIS #Algorithm #요소추적
- 카카오
- 1편
- Algorithm
- 백준
- 카카오인턴
- 소감
- Smilegate
- 식단
- Union-find
- 코테
- 유니온파인드
- BFS
Archives
- Today
- Total
짱아의 개발 기록장
백준 12761번. 돌다리 (c++) / BFS 본문
반응형
dist배열에 8개 원소를 넣었다.
0~3 => 오른쪽으로 1, -1, a, b
4~5 => 왼쪽으로 a, b
6~7 => 힘 모아서 오른쪽으로 a, b배
이후에는, 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
62
63
64
65
66
|
#include <iostream>
#include <queue>
#include <cstdio>
using namespace std;
int a, b, n, m;
bool visited[100001] = {false, };
int stone[100001] = {0, };
int main()
{
scanf("%d %d %d %d", &a, &b, &n, &m);
const int dist[8] = {1, -1, a, b, -a, -b, a, b};
queue<int> q;
visited[n] = true;
stone[n] = 0;
q.push(n);
while(!q.empty())
{
int curr = q.front();
q.pop();
if(curr == m)
{
printf("%d", stone[m]);
break;
}
// 일반 점프
for(int i=0; i<6; i++)
{
int next = curr+dist[i];
if(next<0 || 100000<next) continue;
if(!visited[next])
{
visited[next] = true;
stone[next] = stone[curr]+1;
q.push(next);
}
}
// 힘 모아서 점프
for(int i=6; i<8; i++)
{
int next = curr*dist[i];
if(next<0 || 100000<next) continue;
if(!visited[next])
{
visited[next] = true;
stone[next] = stone[curr]+1;
q.push(next);
}
}
}
return 0;
}
|
cs |
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
백준 15656번. n과m(7) (c++) / 백트래킹 (0) | 2021.05.14 |
---|---|
백준 14938번. 서강 그라운드(c++) / 다익스트라 (0) | 2021.05.07 |
백준 5430번. AC(c++) / 투포인터 (0) | 2021.05.04 |
백준 17413번. 단어 뒤집기 2(c++) / String (0) | 2021.05.02 |
백준 20040번. 사이클 게임(c++) / 유니온파인드 (0) | 2021.04.30 |
Comments