洛谷P1433

洛谷P1443马的遍历

原题连接:马的遍历

#include <bits/stdc++.h>
#define _for(i, a, b) for( int i = a; i < b; ++i)

using namespace std;
typedef long long ll;
const int maxn = 400;
const int mod = 1e9+7;

int graph[maxn][maxn];

int _go[8][2]  = {{2, 1},{2, -1}, {-2, 1}, {-2, -1}, {1, 2}, {1, -2}, {-1, 2}, {-1, -2}};
int n, m, x, y, size, step;
queue < pair<int, int> > que;
pair <int, int> p;

int main(void){
	cin >> n >> m >> x >> y;
	memset(graph, -1, sizeof(graph));
	graph[x][y] = 0;	
	p = make_pair(x,y);
	que.push(p);
	size = 1;
	step = 1;
	while(!que.empty()){
		int tmp = 0;
		_for(i, 0, size){
			int mx = que.front().first;
			int my = que.front().second;
			que.pop();
			
			_for(i, 0, 8){
				int _x = mx + _go[i][0], _y = my + _go[i][1];
				if(_x < 1 || _x > n || _y < 1 || _y > m || graph[_x][_y] >= 0)
					continue;
				p = make_pair(_x, _y);
				que.push(p);
				graph[_x][_y] = step;
				tmp++;
			}
		}
		size = tmp;
		step++;
	}

	_for(i, 1, n+1){
		_for(j, 1, m+1){
			printf("%-5d", graph[i][j]);
		}
		printf("\n");
	}
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值