[伯俊]7562号夜の移動
[伯俊]7562号晚上的移动
1.質問
チェス盤に小夜が置いてある.ナイトが一度に移動できる格子を下図に示します.ナイトが移動したい格子をあげました.ナイトは何回移動すればこの格子に移動できますか?
2.入力
入力した最初の行は、テスト例の個数を与えます.
各テストボックスは3行で構成されています.1行目はチェス盤の1辺長l(4≦l≦300)を与える.チェス盤の大きさはlです× lです.チェス盤の各コマには2対{0,...,l-1}がある× {0,...,l−1}と表すことができる.2行目と3行目には、nightが現在存在するセル、nightが移動するセルが表示されます.
3.出力
各テストボックスは、最低数回の移動を出力します.
4.解答
BFS
BFS
到達点の値を出力した.5.最初のコードと異なる点
while
の条件は後で使いますが、以降は使いません.6.コード
#include <iostream>
#include <queue>
#include <vector>
#include <algorithm>
using namespace std;
int map[300][300];
int dx[] = { 1,2,1,2,-1,-2,-1,-2 };
int dy[] = { 2,1,-2,-1,2,1,-2,-1 };
int bfs(int n, int x, int y, int target_x, int target_y) {
map[x][y] = 0;
bool visited[300][300] = { 0, };
queue<pair<int, int>> q;
q.push({ x, y });
visited[x][y] = true;
while (!q.empty()){
int current_x = q.front().first;
int current_y = q.front().second;
q.pop();
for (int i = 0; i < 8; i++){
int nx = current_x + dx[i];
int ny = current_y + dy[i];
if (nx < 0 || nx >= n || ny < 0 || ny >= n) continue;
if (!visited[nx][ny]) {
visited[nx][ny] = true;
map[nx][ny] = map[current_x][current_y] + 1;
q.push({ nx, ny });
}
}
}
return map[target_x][target_y];
}
int main() {
cin.tie(NULL);
ios_base::sync_with_stdio(false);
int T;
cin >> T;
for (int i = 0; i < T; i++){
int n;
cin >> n;
int current_x, current_y;
cin >> current_x >> current_y;
int target_x, target_y;
cin >> target_x >> target_y;
cout << bfs(n, current_x, current_y, target_x, target_y)<<"\n";
}
}
Reference
この問題について([伯俊]7562号夜の移動), 我々は、より多くの情報をここで見つけました https://velog.io/@e7838752/boj7562テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol