백준의 데스나이트(16948) 문제이다.

[ 문제 바로가기 ]


[ 문제풀이 ]

1) 하나의 시작점에서 도착점까지 갈 때, 최소 이동횟수를 구하는 것이 문제이다.

   본인은 너비우선탐색(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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#include<iostream>
#include<queue>
 
#define endl "\n"
#define MAX 200
using namespace std;
 
int N, R1, R2, C1, C2;
bool Visit[MAX][MAX];
 
int dx[] = { -2-20022 };
int dy[] = { -11-22-11 };
 
void Input()
{
    cin >> N;
    cin >> R1 >> C1 >> R2 >> C2;
}
 
void BFS(int a, int b)
{
    queue<pair<pair<intint>int>> Q;
    Q.push(make_pair(make_pair(a, b), 0));
    Visit[a][b] = true;
 
    while (Q.empty() == 0)
    {
        int x = Q.front().first.first;
        int y = Q.front().first.second;
        int Cnt = Q.front().second;
        Q.pop();
 
        if (x == R2 && y == C2)
        {
            cout << Cnt << endl;
            return;
        }
        
        for (int i = 0; i < 6; i++)
        {
            int nx = x + dx[i];
            int ny = y + dy[i];
 
            if (nx >= 0 && ny >= 0 && nx < N && ny < N)
            {
                if (Visit[nx][ny] == false)
                {
                    Visit[nx][ny] = true;
                    Q.push(make_pair(make_pair(nx, ny), Cnt + 1));
                }
            }
        }
    }
    cout << -1 << endl;
}
 
void Solution()
{
    BFS(R1, C1);
}
 
void Solve()
{
    Input();
    Solution();
}
 
int main(void)
{
    ios::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);
 
    //freopen("Input.txt", "r", stdin);
    Solve();
 
    return 0;
}
cs


+ Recent posts