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 |
Tags
- 우선순위 큐
- VR
- 백준
- 문자열
- 그리디 알고리즘
- 누적 합
- 그래프
- XR Interaction Toolkit
- DFS
- 백트래킹
- 브루트포스
- 투 포인터
- c++
- 자료구조
- 다이나믹 프로그래밍
- Team Fortress 2
- ue5
- 시뮬레이션
- 알고리즘
- 유니온 파인드
- 트리
- 다익스트라
- 정렬
- 수학
- BFS
- 유니티
- 재귀
- 스택
- 구현
- Unreal Engine 5
Archives
- Today
- Total
1일1알
백준 16948번 데스 나이트 C++ 본문
일반적인 bfs탐색 문제이다.
좌표 변화를 담고있는 배열을 이용해서 깔끔하게 푼 것 같다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <unordered_map>
#include <unordered_set>
using namespace std;
typedef long long ll;
struct Knight {
Knight(int row, int col, int moveCount) :row(row), col(col), moveCount(moveCount) {}
int row;
int col;
int moveCount;
};
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int dirR[6] = { -2,-2,0,2,2,0 };
int dirC[6] = { -1,1,2,1,-1,-2 };
int n;
cin >> n;
vector<vector<bool>> found(n, vector<bool>(n, false));
int r1, c1, r2, c2;
cin >> r1 >> c1 >> r2 >> c2;
queue<Knight> q;
q.push(Knight(r1, c1, 0));
found[r1][c1] = true;
int ans = -1;
while (!q.empty()) {
auto a = q.front();
q.pop();
if (a.row == r2 && a.col == c2) {
ans = a.moveCount;
break;
}
for (int i = 0; i < 6; i++) {
int nextRow = a.row + dirR[i];
int nextCol = a.col + dirC[i];
if (nextRow < 0 || nextRow >= n) continue;
if (nextCol < 0 || nextCol >= n) continue;
if (found[nextRow][nextCol]) continue;
q.push(Knight(nextRow, nextCol, a.moveCount + 1));
found[nextRow][nextCol] = true;
}
}
cout << ans;
};
'알고리즘' 카테고리의 다른 글
백준 18405번 경쟁적 전염 C++ (0) | 2021.11.21 |
---|---|
백준 16198번 에너지 모으기 C++ (1) | 2021.11.20 |
백준 6118번 숨바꼭질 C++ (0) | 2021.11.18 |
백준 13335번 트럭 C++ (0) | 2021.11.17 |
백준 14225번 부분수열의 합 C++ (1) | 2021.11.16 |