Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- BFS
- KAKAO
- 시뮬레이션
- Map
- 이런게4문제
- 모의SW역량테스트
- 백트래킹
- 삼성
- dfs
- 브루트포스
- Set
- 레벨2
- 레벨3
- Sort
- 코딩테스트
- STL
- find
- 프로그래머스
- dp
- 문자열
- 삼성SW테스트
- substr
- 2018
- 완전탐색
- 삼성SW역량테스트
- swea
- 백준
- C++
- priority_queue
- 코딩스킬
Archives
- Today
- Total
-
[BFS] 백준 7562번 - 나이트의 이동 (정답률 44%) 본문
https://www.acmicpc.net/problem/7562
BFS 알고리즘 연습 문제이다.
나이트가 갈 수 있는 방향 8개가 주어지고, 현재 위치와 목표로 하는 위치가 주어졌을 때, 몇 번만에 목적지로 이동할 수 있는지 묻는 문제였다. 전형적인 BFS 문제로, 현 위치에서 갈 수 있는 방향으로 가지를 각각 뻗어나가며 정답에 도달하는 경우 종료하는 알고리즘을 사용했다.
아래는 BFS 소스코드. (20ms)
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
|
#include <iostream>
#include <queue>
#define maxlen 300
using namespace std;
int l; // 0, 1, ..., l-1
int start_r, start_c, target_r, target_c;
int map[maxlen][maxlen]; // 0 ~ 299.
bool check[maxlen][maxlen];
int answer;
typedef struct dir{
int dr, dc;
}dir;
dir direction[8] = { { 1, 2 }, { 2, 1 }, { -1, 2 }, { 1, -2 }, { -1, -2 }, { -2, 1 }, { 2, -1 }, { -2, -1 } };
// 나이트가 갈 수 있는 방법 8가지.
void reset(){
for (int i = 0; i < maxlen; i++)
for (int j = 0; j < maxlen; j++){
map[i][j] = 0; // 초기화.
check[i][j] = false; // 초기화
}
}
void bfs(int row, int col, int curtime){
queue<pair<int, pair<int, int> > > q;
check[row][col] = true;
q.push(make_pair(curtime, make_pair(row, col)));
while (!q.empty()){
int cur_time = q.front().first;
if (cur_row == target_r && cur_col == target_c){ // 정답 찾음.
answer = cur_time;
break;
}
q.pop();
for (int i = 0; i < 8; i++){
int n_r = cur_row + direction[i].dr;
int n_c = cur_col + direction[i].dc;
if (n_r >= 0 && n_r < l && n_c >= 0 && n_c < l)
{
if (!check[n_r][n_c]){
check[n_r][n_c] = true;
q.push(make_pair(cur_time + 1, make_pair(n_r, n_c)));
}
}
}
}
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int TC;
cin >> TC;
for (int i = 0; i < TC; i++){
reset();
cin >> l;
cin >> start_r >> start_c;
cin >> target_r >> target_c;
bfs(start_r, start_c, 0);
cout << answer << '\n';
}
return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs |
'4. BFS' 카테고리의 다른 글
[BFS] 백준 1697번 - 숨바꼭질 (정답률 25%) (0) | 2020.01.07 |
---|
Comments