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;
    }
    

      

     

  • 相关阅读:
    div+css之清除浮动
    ASP.NET repeater添加序号列的方法
    html中给图片添加热点
    jquery中read与js中onload区别
    从.net转型,聊聊最近一些面试,薪资和想法
    (9)分布式下的爬虫Scrapy应该如何做-关于ajax抓取的处理(一)
    数学之美--关于图论引申出来的爬虫构想
    (8)分布式下的爬虫Scrapy应该如何做-图片下载(源码放送)
    【转】Bloom Filter布隆过滤器的概念和原理
    【转】Python中的GIL、多进程和多线程
  • 原文地址:https://www.cnblogs.com/xiaonuolen/p/10684308.html
Copyright © 2011-2022 走看看