`
249326109
  • 浏览: 56098 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

uva 439 - Knight Moves

    博客分类:
  • acm
 
阅读更多

先研究下国际象棋中马是怎么走的,然后bfs就哦了。

 

#include<stdio.h>
#include<string.h>
#include<stdlib.h>

int map[10][10];

typedef struct Point {
	int x;
	int y;
	int dis;
} Point;

typedef Point* Ptr;

Point queue[5000];

int dir[8][2] = { { -2, 1 }, { -2, -1 }, { -1, 2 }, { 1, 2 }, { -1, -2 }, { 1,
		-2 }, { 2, 1 }, { 2, -1 } };

int bfs(Point from, Point to) {
	if (from.x == to.x && from.y == to.y)
		return 0;

	int front = 0;
	int rear = 1;
	queue[0].x = from.x;
	queue[0].y = from.y;
	queue[0].dis = from.dis;
	while (front < rear) {
		Ptr p = &queue[front++];
		map[p->x][p->y] = 1;
		if (p->x == to.x && p->y == to.y)
			return p->dis;
		int k;
		int newX, newY;
		for (k = 0; k < 8; k++) {
			newX = p->x + dir[k][0];
			newY = p->y + dir[k][1];
			if (newX >= 1 && newX <= 8 && newY >= 1 && newY <= 8
					&& !map[newX][newY]) {
				queue[rear].x = newX;
				queue[rear].y = newY;
				queue[rear].dis = p->dis + 1;
				rear++;
			}
		}
	}
	return -1;
}

int main() {
	char start[5];
	char end[5];
	while (scanf("%s%s", start, end) != EOF) {
		memset(map, 0, sizeof(map));
		Point from, to;
		from.x = start[0] - 'a' + 1;
		from.y = start[1] - '0';
		from.dis = 0;
		to.x = end[0] - 'a' + 1;
		to.y = end[1] - '0';
		to.dis = -1;
		printf("To get from %s to %s takes %d knight moves.\n", start, end,
				bfs(from, to));
	}
	return 0;
}

 

分享到:
评论

相关推荐

    北大acm 1915 Knight Moves C++语言源代码

    ### 北大ACM 1915 Knight Moves C++语言源代码解析 #### 背景介绍 在本题目中,“北大 ACM JudgeOnline poj1915 Knight Moves”要求解决的是一个经典的骑士行走问题。具体来说,题目背景提到了一位自称无人能及的...

    Knight Moves

    Your task is to write a program to calculate the minimum number of moves移动次数 needed for a knight to reach one point from another, so that you have the chance to be faster than Somurolov. ...

    北大POJ2243Knight Moves

    【北大POJ2243Knight Moves】是一个典型的图论问题,主要涉及到国际象棋中的马(Knight)的移动规则以及最短路径的计算。在国际象棋中,马每一步可以向前后各跳两格,然后横向或纵向跳一格,形成一个“L”形的移动...

    leetcode棋盘-minimum-knight-moves:最小骑士移动

    moves = { { 2 , 1 }, { 1 , 2 }, { - 1 , 2 }, { - 2 , 1 }, { - 2 , - 1 }, { - 1 , - 2 }, { 1 , - 2 }, { 2 , - 1 }}; Queue q = new LinkedList&lt;&gt; (); q . add( new int []{ 0 , 0 }); Set&lt; String &gt; ...

    chess-knight:骑士之旅解决方案和变化

    private static final int[][] knightMoves = {{1, 2}, {1, -2}, {-1, 2}, {-1, -2}, {2, 1}, {2, -1}, {-2, 1}, {-2, -1}}; } ``` 在这个框架中,`knightTour`方法是核心,它通过递归地尝试所有可能的跳跃路径。`...

    Knight Moves.txt

    因子:因子也叫因数,例如3*5=15,那么3和5是15的因子。同时15*1=15,那么1和15也是15的因子。 1,3,5,15 这四个因子是15的所有因子。 完数:如果一个数等于不含它本身的其他因子之和,则称该数为‘完数’。...

    engine-value_moves.c

    engine-value_moves.c

    Python库 | peewee-moves-1.6.1.tar.gz

    资源分类:Python库 所属语言:Python 资源全名:peewee-moves-1.6.1.tar.gz 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059

    阿尔法新代系统后处理

    $----------------------- RAPID MOVES ---------------------------------------- $20 Rapid Move in XY (MILL/ROUTER/FLAME/LASER) or XZ (LATHE) only G0 X[AX] Y[AY] $IF CHANGE = 0 G0 G43 H[OFS] Z[AZ] $...

    knightmoves

    如果“knightmoves-main”包含的是一个完整的项目,那么还可能有其他的文件,如CSS文件用于样式设计,JavaScript文件用于处理逻辑,以及可能的图像文件用于图标或其他视觉元素。这些文件可能按照现代Web开发的模块化...

    TinyVM:用于 HWP 的 TinyVM - SS2014

    微型虚拟机命令: LOAD -- Loads value to R0MOVE_FROM_MEM_TO_REG (Rx),Ry -- Moves the content of (Rx) to RyMOVE_FROM_REG_TO_MEM Rx,(Ry) -- Moves the content of Rx to (Ry)MOVE_FROM_REG_TO_REG Rx,Ry -- ...

    Running-MOVES-2014b-vs-3

    标题“Running-MOVES-2014b-vs-3”和描述中提到的“Running-MOVES-2014b-vs-3”似乎指向一个特定的项目或比较研究,可能涉及到某个软件版本的运行性能。从标签“Python”我们可以推断,这个项目与Python编程语言有关...

    宝元系统alphacam 后处理

    宝元系统alphacam 后处理 ...$----------------------- RAPID MOVES ---------------------------------------- $20 Rapid Move in XY (MILL/ROUTER/FLAME/LASER) or XZ (LATHE) only G00 X[AX] Y[AY] $IF CHANGE = 0

    street-fighter-moves:街头霸王动作

    本项目"street-fighter-moves"专注于街头霸王角色的动作解析,特别关注了其中的标志性角色——隆(Ryu)。 在《街头霸王》系列中,每个角色都有其独特的招式和连击,这些动作是游戏策略和玩家操作技巧的关键组成...

    WPF 国际象棋 棋子 ChessProgrammingTest.zip

    You have been provided with a third-party library "ChessLib" which calculates the legal moves a knight can make given a position on an 8 by 8 board. The library has been used to create a program which...

    Fusion Moves:使用融合移动求解图形模型的MATLAB包装器-matlab开发

    # Matlab Wrapper for Fusion Moves (QPBO + alpha-expansion) 作者:Sarun Gulyanon 24.04.2017 --------------------- 描述--------------------- Fusion Moves 是一种基于 QPBO 和 alpha-expansion 的方法,用于...

    vbucket-moves:显示 Couchbase VBucket 运动的工具

    vbucket-moves.py 是一个分析来自 Couchbase Server 的主事件文件的工具。 主事件文件显示重新平衡事件,可以从。 您需要进行身份验证才能获取文件。 此工具的输出是 vbucket 移动的甘特图,显示移动每个 vbucket 所...

    z-moves-bot

    特征Z-Moves Bot具有许多有用而强大的功能。首先,僵尸程序是持久性的,这意味着该僵尸程序具有状态,因为您可以将截止日期和链接添加到数据库中并随时间进行保存。该机器人提供了一些功能:通知事项截止期限链接...

    TV-MOVES

    【TV-MOVES】是一个与电视电影相关的项目,但没有提供具体的细节,所以我们将基于一般性的电视和电影行业的知识进行探讨。在这个行业中,涉及到的技术、工具和流程是多方面的,包括内容创作、后期制作、分发和播放等...

Global site tag (gtag.js) - Google Analytics