• hdu--1372--Knight Moves(bfs)


    Knight Moves

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 11408    Accepted Submission(s): 6700


    Problem Description
    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
    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
    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.
     1 /*
     2     Name: hdu--1372--Knight Moves
     3     Copyright: ©2017 日天大帝
     4     Author: 日天大帝 
     5     Date: 30/04/17 20:31
     6     Description: bfs
     7 */
     8 #include<iostream>
     9 #include<queue> 
    10 #include<cstring>
    11 #include<string>
    12 using namespace std;
    13 int bfs();
    14 struct node{
    15     int x,y,ct;
    16 }s,e;
    17 queue<node> q;
    18 int vis[10][10];
    19 int ans;
    20 int dir[8][2]={-2,1, -1,2, 1,2, 2,1, 2,-1, 1,-2, -1,-2, -2,-1};
    21 int main(){
    22     ios::sync_with_stdio(false);
    23     
    24     string str1,str2;
    25     while(cin>>str1>>str2){
    26         s.x = str1.at(0) - 'a';
    27         s.y = str1.at(1) - 48-1;
    28         e.x = str2.at(0) - 'a';
    29         e.y = str2.at(1) - 48-1;
    30         ans = 0;
    31         memset(vis,0,sizeof(vis));
    32         cout<<"To get from "<<str1<<" to "<<str2<<" takes "<<bfs()<<" knight moves."<<endl;
    33     }
    34     return 0;
    35 }
    36 int bfs(){
    37     while(!q.empty())q.pop();
    38     s.ct = 0;
    39     vis[s.x][s.y] = 1;
    40     q.push(s);
    41     node a,temp;
    42     while(!q.empty()){
    43         temp = q.front();q.pop();
    44         if(temp.x == e.x && temp.y == e.y){
    45             return temp.ct;
    46         }
    47         for(int i=0; i<8; ++i){
    48             a = temp;
    49             a.x += dir[i][0];
    50             a.y += dir[i][1];
    51             if(a.x<0 || a.y<0 || a.x >=8 || a.y >= 8 || vis[a.x][a.y])continue;
    52             vis[a.x][a.y] = 1;
    53             a.ct++;
    54             q.push(a);
    55         }
    56     }
    57     return -1;
    58 }
  • 相关阅读:
    【零基础】量子纠缠图像问世,简单解读实验原理
    【零基础】一文读懂CPU(从二极管到超大规模集成电路)
    【零基础】搞定LAMP(linux、apache、mysql、php)环境安装图文教程(基于centos7)
    【零基础】Selenium:Webdriver图文入门教程java篇(附相关包下载)
    【零基础】快速入门爬虫框架HtmlUnit
    【零基础】speech driven animation中文安装使用指南
    【零基础】斯坦福四足机器人DIY指引
    【零基础】为什么Facebook发币就不一样
    【零基础】彻底搞懂51单片机各种型号(ATMEL系列)
    【零基础】简单说说一键果体APP的AI
  • 原文地址:https://www.cnblogs.com/langyao/p/6790371.html
Copyright © 2020-2023  润新知