P1443 马的遍历

P1443 马的遍历

题目描述

有一个 n \times mn×m 的棋盘,在某个点 (x, y)(x,y) 上有一个马,要求你计算出马到达棋盘上任意一个点最少要走几步。

输入格式

输入只有一行四个整数,分别为 n, m, x, yn,m,x,y。

输出格式

一个 n \times mn×m 的矩阵,代表马到达某个点最少要走几步(左对齐,宽 55 格,不能到达则输出 -1−1)。

输入输出样例

输入 #1复制

3 3 1 1

输出 #1复制

0    3    2    
3    -1   1    
2    1    4    

说明/提示

数据规模与约定

对于全部的测试点,保证 1 \leq x \leq n \leq 4001≤x≤n≤400,1 \leq y \leq m \leq 4001≤y≤m≤400。

#include <stdio.h>
#include <string.h>
#include<iostream>
#include<algorithm>
#include<string>
#include<cmath>
#include<queue>
#include<map>
#pragma warning(disable:4996)
using namespace std;
typedef long long ll;
//总结  bfs  方向数组改一下就好
//注意题目要求的是左对齐!!!!!  第一次提交的时候 输出错误了
//左输出是  %-5d  !!!
struct node
{
	int x;
	int y;
	int step;
	node(int x, int y, int step)
	{
		this->x = x;
		this->y = y;
		this->step = step;
	}
};
int n = 0;
int m = 0;
int sx = 0;
int sy = 0;
int vis[500][500];
int dx[] = { 1,2,1,2,-1,-2,-1,-2 };
int dy[] = { 2,1,-2,-1,-2,-1,2,1 };
void bfs()
{
	memset(vis, -1, sizeof(vis));
	queue<node> q;
	q.push(node(sx,sy,0));
	vis[sx][sy] = 0;
	while (q.size())
	{
		int x = q.front().x;
		int y = q.front().y;
		int step = q.front().step;
		int i = 0;
		q.pop();
		for (i = 0; i < 8; i++)
		{
			int tx = x + dx[i];
			int ty = y + dy[i];
			int tstep = step + 1;
			if (tx < 1 || tx > n || ty < 1 || ty > m || vis[tx][ty] != -1)
			{
				continue;
			}
			vis[tx][ty] = tstep;
			q.push(node(tx, ty, tstep));
		}
	}
	int i = 0;
	int j = 0;
	for (i = 1; i <= n; i++)
	{
		
		for (j = 1; j <= m; j++)
		{
			
				printf("%-5d", vis[i][j]);
			
			
		}
		cout << endl;
	}
}
int main()
{
	cin >> n >> m >> sx >> sy;
	bfs();
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值