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
- 코딩테스트
- 1편
- c++
- 알고리즘
- 투포인터
- 백준
- 카카오
- 보석쇼핑
- 스마일게이트
- Smilegate
- 서버개발캠프
- Algorithm
- BFS
- 식단
- BaekJoon
- Union-find
- 소감
- 코테
- 카카오인턴
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 중반부
- 삼성 #코테 #2020상반기 #c++
- LIS #Algorithm #요소추적
- 유니온파인드
Archives
- Today
- Total
짱아의 개발 기록장
백준 1600번. 말이 되고픈 원숭이(c++) / BFS 본문
반응형
방문처리가 핵심인 BFS문제였다.
그냥 (x, y)로만 방문처리를 해주면, 더 빠른 길인데도 불구하고 누락되는 경우가 생긴다.
따라서, 말로 몇 번 이동했는지를 인자값으로 하나 더 넣어주었다. => visited[x좌표][y좌표][말 이동 횟수]
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
67
68
69
70
|
// 말이 되고픈 원숭이
#include <iostream>
#include <queue>
#include <tuple>
using namespace std;
int k, w, h;
int chess[201][201] = {0, };
int hx[8] = {-2, -1, 2, 1, 2, 1, -1, -2};
int hy[8] = {1, 2, 1, 2, -1, -2, -2, -1};
int dx[4] = {0, 0, -1, 1};
int dy[4] = {-1, 1, 0, 0};
int move()
{
queue<tuple<int, int, int, int>> q;
q.push(make_tuple(0, 0, 0, 0));
int visited[201][201][31] = {0, };
while(!q.empty()){
int x, y, cnt, horseMove;
tie(x, y, cnt, horseMove) = q.front();
visited[x][y][horseMove] = true;
q.pop();
if(x==h-1 && y==w-1){
return cnt;
}
if(horseMove+1<=k){
for(int i=0; i<8; i++){
int nx = x+hx[i];
int ny = y+hy[i];
if(0<=nx && nx<h && 0<=ny && ny<w && !visited[nx][ny][horseMove+1]){
if(chess[nx][ny]==0){
visited[nx][ny][horseMove+1] = true;
q.push(make_tuple(nx, ny, cnt+1, horseMove+1));
}
}
}
}
for(int i=0; i<4; i++){
int nx = x+dx[i];
int ny = y+dy[i];
if(0<=nx && nx<h && 0<=ny && ny<w && !visited[nx][ny][horseMove]){
if(chess[nx][ny]==0){
visited[nx][ny][horseMove] = true;
q.push(make_tuple(nx, ny, cnt+1, horseMove));
}
}
}
}
return -1;
}
int main()
{
cin>>k>>w>>h;
for(int i=0; i<h; i++){
for(int j=0; j<w; j++){
cin>>chess[i][j];
}
}
cout<<move()<<"\n";
return 0;
}
|
cs |
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
백준 3109번. 빵집(c++) / Greedy (0) | 2021.04.06 |
---|---|
백준 9934번. 완전 이진 트리(c++) / Tree (0) | 2021.04.05 |
백준 9461번. 파도반 수열(c++) / DP (0) | 2021.04.04 |
백준 4803번. 트리(c++) / 유니온파인드 (0) | 2021.04.02 |
백준 13904번. 과제(c++) / Greedy (0) | 2021.04.01 |
Comments