Game Develop

[Algorithm] Baekjoon 7562번 : 나이트의 이동 본문

Algorithm/Baekjoon

[Algorithm] Baekjoon 7562번 : 나이트의 이동

MaxLevel 2023. 2. 27. 01:33

https://www.acmicpc.net/problem/7562

 

7562번: 나이트의 이동

체스판 위에 한 나이트가 놓여져 있다. 나이트가 한 번에 이동할 수 있는 칸은 아래 그림에 나와있다. 나이트가 이동하려고 하는 칸이 주어진다. 나이트는 몇 번 움직이면 이 칸으로 이동할 수

www.acmicpc.net

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
struct Node
{
    int y;
    int x;
    int count;
};
 
bool visited[301][301];
int dir[8][2= { {-1,-2}, {-2,-1},{-2,1}, {-1,2},{1,2},{2,1},{2,-1},{1,-2} }; 
 
int BFS(int sy, int sx, int dy, int dx, int size)
{
    memset(visited, falsesizeof(visited));
 
    queue<Node> q;
    q.push({ sy,sx,0 });
    visited[sy][sx] = true;
 
    while (!q.empty())
    {
        int curY = q.front().y;
        int curX = q.front().x;
        int curCount = q.front().count;
        q.pop();
 
        if (curY == dy && curX == dx)
        {
            return curCount;
        }
 
        for (int i = 0; i < 8++i)
        {
            int nextY = curY + dir[i][0];
            int nextX = curX + dir[i][1];
 
            if (nextY < 0 || nextY >= sizecontinue;
            if (nextX < 0 || nextX >= sizecontinue;
            if (visited[nextY][nextX]) continue;
 
            visited[nextY][nextX] = true;
            q.push({ nextY,nextX,curCount + 1 });
        }
    }
}
 
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
 
    int t, n, sy, sx, dy, dx;
    vector<int> results;
 
    cin >> t;
 
    for (int i = 0; i < t; ++i)
    { 
        cin >> n;
        cin >> sy >> sx >> dy >> dx;
        results.push_back(BFS(sy, sx, dy, dx, n));
    }
 
    for (auto& temp : results)
    {
        cout << temp << endl;
    }
}
cs

따로 맵을 선언할필요 없이 방문체크만으로도 해결할 수 있는 BFS문제이다.