728x90
문제
https://www.acmicpc.net/problem/7562
문제해결
1. 기존 BFS 문제에서 조금 변형된 문제이다. 나이트의 이동 방향를 ck함수에 추가한다.
2. 각 방향에 대해서 이동 가능/불가 여부를 판단한 후 큐에 넣어서 BFS알고리즘을 돌린다
3. 도착지의 x, y값이 나오면 BFS를 끝내고 다음 입력값에 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
|
#include <iostream>
#include <queue>
#include <cstring>
using namespace std;
int T,L;
int end_x,end_y,start_x,start_y;
bool visit[301][301] = {false};
bool ck(int y,int x){
if(y<0||x<0||x>=L||y>=L){return false;}
else{return true;}
}
void BFS(int y,int x){
int cnt = 0;
queue<int> dy;
queue<int> dx;
queue<int> dc;
dx.push(x);
dy.push(y);
dc.push(cnt);
while(1){
if(dy.empty() == 1){break;}
x = dx.front(); dx.pop();
y = dy.front(); dy.pop();
cnt = dc.front(); dc.pop();
if(x == end_x && y == end_y){cout << cnt;break;}
if(visit[y][x]){continue;}
visit[y][x] = true;
if(ck(y-2,x-1)){dy.push(y-2);dx.push(x-1);dc.push(cnt+1);}
if(ck(y-2,x+1)){dy.push(y-2);dx.push(x+1);dc.push(cnt+1);}
if(ck(y-1,x-2)){dy.push(y-1);dx.push(x-2);dc.push(cnt+1);}
if(ck(y+1,x-2)){dy.push(y+1);dx.push(x-2);dc.push(cnt+1);}
if(ck(y+2,x-1)){dy.push(y+2);dx.push(x-1);dc.push(cnt+1);}
if(ck(y+2,x+1)){dy.push(y+2);dx.push(x+1);dc.push(cnt+1);}
if(ck(y-1,x+2)){dy.push(y-1);dx.push(x+2);dc.push(cnt+1);}
if(ck(y+1,x+2)){dy.push(y+1);dx.push(x+2);dc.push(cnt+1);}
}
}
int main(void){
cin >> T;
for(int i = 0;i<T;i++){
cin >> L;
cin >> start_y >> start_x;
cin >> end_y >> end_x;
memset(visit,false,sizeof(visit));
BFS(start_y,start_x);
cout << "\n";
//cout << "next" <<"\n";
}
}
|
cs |
728x90
'그래프 이론 > BFS, DFS 알고리즘' 카테고리의 다른 글
[C++][BFS(너비우선탐색) 알고리즘] (0) | 2020.12.06 |
---|---|
[C++][DFS(깊이 우선탐색) 알고리즘] (0) | 2020.12.04 |
[백준/C++][연결 요소의 개수(11724번)] (0) | 2020.12.01 |
[백준/C++][인구이동(16234번)] (0) | 2020.11.28 |
[백준/C++][(1167번)트리의 지름] (0) | 2020.11.21 |