zoukankan      html  css  js  c++  java
  • hdu 1372 Knight Moves

    Knight Moves

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


    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.
     
    Source
     
     1 #include<iostream>
     2 #include<queue>
     3 #include<cstdio>
     4 #include<cstring>
     5 #include<cstdlib>
     6 using namespace std;
     7 int x1,x2,y1,y2;
     8 int dir[8][2]={{-1,2},{-1,-2},{1,2},{1,-2},{-2,1},{-2,-1},{2,1},{2,-1}};
     9 int map[10][10];
    10 struct ln{
    11     int x;
    12     int y;
    13     int t;
    14 }abc,q;
    15 
    16 int border(int x,int y)
    17 {
    18     if( (x>=1&&x<=8) && (y>=1&&y<=8) &&(map[x][y]==0) )
    19     return 1;
    20     return 0;
    21 }
    22 
    23 int bfs(int x,int y)
    24 {
    25     int i;
    26     queue<struct ln>p;
    27     abc.x=x;
    28     abc.y=y;
    29     abc.t=0;
    30     map[abc.x][abc.y]=1;
    31     p.push(abc);
    32     while(!p.empty())
    33     {
    34         abc=p.front();
    35         p.pop();
    36         if(abc.x==x2&&abc.y==y2)
    37         {
    38             return abc.t;
    39             break;
    40         }
    41         for(i=0;i<8;i++)
    42         {
    43             q.x=abc.x+dir[i][0];
    44             q.y=abc.y+dir[i][1];
    45             if(border(q.x,q.y))
    46             {
    47                 q.t=abc.t+1;
    48                 p.push(q);
    49                 map[q.x][q.y]=1;
    50             }
    51         }
    52     }
    53     return 0;
    54 }
    55 int main()
    56 {
    57     //freopen("in.txt","r",stdin);
    58     char n,m;
    59     while(~scanf("%c%d %c%d",&n,&y1,&m,&y2))
    60     {
    61         getchar();
    62         int count=0;
    63         memset(map,0,sizeof(map));
    64         x1=n-'a'+1;
    65         x2=m-'a'+1;
    66         count=bfs(x1,y1);
    67         printf("To get from %c%d to %c%d takes %d knight moves.
    ",n,y1,m,y2,count);
    68 
    69     }
    70     return 0;
    71 }
    View Code
     
  • 相关阅读:
    顺序栈的基本操作(C语言)
    简单加密-维吉尼亚
    单链表的反转
    单链表的排序
    SVN信息泄露漏洞
    SQLi-labs Page-2_Less-21---Less-28a
    dedecms 任意密码重置 验证凭证回传
    ThinkCMF缓存Getshell
    ThinkCMF X2.2.0多处SQL注入漏洞
    SQLi-LABS Page-4(Challenges)
  • 原文地址:https://www.cnblogs.com/xuesen1995/p/4108920.html
Copyright © 2011-2022 走看看