洛谷 P1443 马的遍历(bfs)

题目链接:

https://www.luogu.com.cn/problem/P1443

思路:

一道广度优先搜索求最短路的裸题
注意数字左对齐宽n格用printf输出格式为%-nd

代码:

#include<bits/stdc++.h>

using namespace std;

const int maxn = 404;
int n, m, x, y;
int mat[maxn][maxn];
queue<pair<int, int> > que;

int d;
inline void check(int a, int b) {
	if(a >= 1 && b >= 1 && a <= n && b <= m && mat[a][b] == -1) {
		mat[a][b] = d;
		que.push(make_pair(a, b));
	}
}

int main() {
#ifdef MyTest
	freopen("Sakura.txt", "r", stdin);
#endif	
	scanf("%d %d %d %d", &n, &m, &x, &y);
	for(int i = 1; i <= n; ++i) {
		for(int j = 1; j <= m; ++j) {
			mat[i][j] = -1;
		}
	}
	mat[x][y] = 0;
	que.push(make_pair(x, y));
	while(!que.empty()) {
		pair<int, int> now = que.front(); que.pop();
		int a = now.first, b = now.second;
		d = mat[a][b] + 1;
		check(a - 2, b - 1);
		check(a - 2, b + 1);
		check(a - 1, b - 2);
		check(a - 1, b + 2);
		check(a + 1, b - 2);
		check(a + 1, b + 2);
		check(a + 2, b - 1);
		check(a + 2, b + 1);
	}
	for(int i = 1; i <= n; ++i) {
		for(int j = 1; j <= m; ++j) {
			printf("%-5d", mat[i][j]);
		}
		putchar('\n');
	}
	return 0;	
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值