zoukankan      html  css  js  c++  java
  • ZOJ——Knight Moves(bfs)

    Knight Moves

    Time Limit: 2 Seconds      Memory Limit: 65536 KB

    A friend of you is doing research on the Traveling Knight Problem (TKP) where you are to find the shortest closed tour of knight moves that visits each square of a given set of n squares on a chessboard exactly once. He thinks that the most difficult part of the problem is determining the smallest number of knight moves between two given squares and that, once you have accomplished this, finding the tour would be easy.
    Of course you know that it is vice versa. So you offer him to write a program that solves the "difficult" part.

    Your job is to write a program that takes two squares a and b as input and then determines the number of knight moves on a shortest route from a to b.

    Input Specification

    The input file will contain one or more test cases. Each test case consists of one line containing two squares separated by one space. A square is a string consisting of a letter (a-h) representing the column and a digit (1-8) representing the row on the chessboard.

    Output Specification

    For each test case, print one line saying "To get from xx to yy takes n knight moves.".

    Sample Input

    e2 e4
    a1 b2
    b2 c3
    a1 h8
    a1 h7
    h8 a1
    b1 c3
    f6 f6
    

    Sample Output

    To get from e2 to e4 takes 2 knight moves.
    To get from a1 to b2 takes 4 knight moves.
    To get from b2 to c3 takes 2 knight moves.
    To get from a1 to h8 takes 6 knight moves.
    To get from a1 to h7 takes 5 knight moves.
    To get from h8 to a1 takes 6 knight moves.
    To get from b1 to c3 takes 1 knight moves.
    To get from f6 to f6 takes 0 knight moves.
    

    Source: University of Ulm Local Contest 1996
    Submit    Status
    #include<bits/stdc++.h>
    using namespace std;
    void bfs(int sx,int sy,int ex,int ey);
    struct state{
    	int x;
    	int y;
    }temp1,temp2;
    int vis[100][100]={0};
    int dir[8][2]={{1,2},{1,-2},{-1,2},{-1,-2},{2,1},{2,-1},{-2,-1},{-2,1}};
    void bfs(int sx,int sy,int ex,int ey,char s1[3],char s2[3]){
    	memset(vis,0,sizeof(vis));
    	queue<state> q;
    	temp1.x = sx;
    	temp1.y = sy;
    	vis[sx][sy] = 1;
    	q.push(temp1);
    	while(!q.empty()){
    		temp1 = q.front();
    		q.pop();
    		for(int i=0;i<8;i++){
    			temp2.x = temp1.x + dir[i][0];
    			temp2.y = temp1.y + dir[i][1];
    			if(temp2.x >=1 && temp2.x<=8 && temp2.y >=1 && temp2.y<=8 && vis[temp2.x][temp2.y]==0){
    				vis[temp2.x][temp2.y]= vis[temp1.x][temp1.y]+1;
    				q.push(temp2);
    			}
    		}
    		if(vis[ex][ey]!=0){
    			printf("To get from %s to %s takes %d knight moves.
    ",s1,s2,vis[ex][ey]-1);
    			break;
    		}
    	}
    
    
    }
    int main(){
    	char s1[3];
    	char s2[3];
    	while(scanf("%s %s",&s1,&s2)!=EOF){
    		bfs(s1[0]-'a'+1,s1[1]-'0',s2[0]-'a'+1,s2[1]-'0',s1,s2);
    	}
    	
    	
    	return 0;
    }
    

      

     

  • 相关阅读:
    Row Cache lock Problem
    AIX操作系统上安装Oracle数据库必不可少的几项检查工作
    如何使用MOS风格的代码背景?
    在Ubuntu 10上使用DLink DWA 130无线网卡
    PL/SQL Developer View SQL功能的一个Bug
    11g新特性SQL PLUS 错误日志
    生病了。。。
    ORA00600: [7005], [192]内部错误一例
    Linux:vmware下ubuntu更换网卡后无法识别网卡
    Linux:LFS:第一天:今天开始学习,计划7天时间
  • 原文地址:https://www.cnblogs.com/xiaonuolen/p/10684308.html
Copyright © 2011-2022 走看看