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
- 컴퓨터공학 #자료구조 #스택 #c++ #알고리즘 #백준문제풀이
- 컴퓨터공학 #c #c언어 #문자열입력
- BOJ #컴퓨터공학 #C++ #알고리즘 #자료구조
- 컴퓨터공학 #Java #자바 #클래스 #객체 #인스턴스
- 잔
- HTML #CSS
Archives
- Today
- Total
영벨롭 개발 일지
[백준 BOJ][C++]7562번 나이트의 이동 풀이: BFS 본문
https://www.acmicpc.net/problem/7562
#include<iostream>
#include<vector>
#include<cstring>
#include<cstdlib>
#include<cmath>
#include<string>
#include<algorithm>
#include<queue>
using namespace std;
int dx[8] = { -2, -1, 1, 2, 2, 1, -1, -2 };
int dy[8] = { -1, -2, -2, -1, 1, 2, 2, 1 };
typedef pair<int, int> coord;
typedef struct node {
coord loc;
int depth;
};
coord s, e;
int t, n;
bool visit[301][301] = { false, };
int bfs() {
queue<node> q;
q.push({ s, 0 });
visit[s.second][s.first] = true;
while (!q.empty()) {
node curr = q.front();
q.pop();
if (curr.loc == e) {
return curr.depth;
}
for (int i = 0; i < 8; i++) {
int tx = curr.loc.first + dx[i];
int ty = curr.loc.second + dy[i];
if (tx < 0 || tx >= n || ty < 0 || ty >= n)
continue;
if (visit[ty][tx])
continue;
visit[ty][tx] = true;
q.push({ {tx, ty}, curr.depth + 1 });
}
}
}
int main(void) {
cin >> t;
while (t > 0) {
cin >> n;
int x, y;
cin >> x >> y;
s.first = x;
s.second = y;
cin >> x >> y;
e.first = x;
e.second = y;
memset(visit, false, sizeof(visit));
int ret = bfs();
cout << ret << endl;
t--;
}
return 0;
}
반응형
'알고리즘 문제 풀이 > BOJ' 카테고리의 다른 글
[백준 BOJ][C++]16947번 서울 지하철 2호선 풀이: BFS & DFS (0) | 2022.04.19 |
---|---|
[백준 BOJ][C++]2206번 벽 부수고 이동하기 풀이: BFS (0) | 2022.04.12 |
[백준 BOJ][C++]7569번 토마토 풀이: BFS (0) | 2022.04.11 |
[백준 BOJ][C++]2529번 부등호 풀이: DFS (0) | 2022.04.08 |
[백준 BOJ][C++]14501번 퇴사 풀이: 브루트 포스 & 재귀 (0) | 2022.04.08 |