zoukankan      html  css  js  c++  java
  • 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 }
  • 相关阅读:
    后端结对编程报告(2018.6.6)
    Burn Down Chart(2018.6.4~2018.6.10)
    C#多线程List的非线程安全性
    C#泛型参数多线程与复杂参数多线程
    Java学习之App开发公司手机端设想
    Java学习之SpringBoot整合SSM Demo
    Java学习之Mysql结构优化
    Java学习之Dubbo+ZooKeeper分布式服务Demo
    C# 面向切面编程--监控日志记录方案
    C# 通用类型转换方法
  • 原文地址:https://www.cnblogs.com/langyao/p/6790371.html
Copyright © 2011-2022 走看看