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
- 언리얼엔진5
- Programmers
- DirectX11
- UnrealEngine4
- C++
- algorithm
- UE5
- 백준
- baekjoon
- NRVO
- DeferredRendering
- C
- 1563
- 오블완
- directx
- UnrealEngine5
- softeer
- GeeksForGeeks
- RVO
- 줄 세우기
- Frustum
- const
- RootMotion
- Unreal Engine5
- 팰린드롬 만들기
- IFileDialog
- 2294
- 티스토리챌린지
- 프로그래머스
- winapi
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 7562번 : 나이트의 이동 본문
https://www.acmicpc.net/problem/7562
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, false, sizeof(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 >= size) continue;
if (nextX < 0 || nextX >= size) continue;
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문제이다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 9466번 : 텀 프로젝트 (1) | 2023.02.28 |
---|---|
[Algorithm] Baekjoon 6593번 : 상범 빌딩 (0) | 2023.02.27 |
[Algorithm] Baekjoon 2583번 : 영역 구하기 (0) | 2023.02.26 |
[Algorithm] Baekjoon 5427번 : 불 (0) | 2023.02.25 |
[Algorithm] Baekjoon 4179번 : 불! (0) | 2023.02.25 |