zoukankan      html  css  js  c++  java
  • 【POJ 2243】Knight Moves

    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 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.

    题意:骑士走法是日字型,或说L型,给出起点和终点,求起点到终点的最少步数

    分析:广搜(bfs)

    #include<stdio.h>
    #include<string.h>
    int vis[10][10];
    int fx[8]= {1,1,-1,-1,2,2,-2,-2},
        fy[8]= {2,-2,2,-2,1,-1,1,-1};
    struct node
    {
        int x,y,step;
        bool operator == (const node b)
        {
            return x==b.x&&y==b.y;
        }
        bool ok()
        {
            return x<8&&x>=0&&y<8&&y>=0&&vis[x][y]==0;
        }
    } fr,en,que[1000];
    int bfs()
    {
        if(fr==en)return 0;
        int coun=0,top=1;
        memset(que,0,sizeof(que));
        memset(vis,0,sizeof(vis));
        que[++coun]=fr;
        while(top<=coun)
        {
            node d=que[top];
            top++;
            node p;
            for(int i=0; i<8; i++)
            {
                p.x=d.x+fx[i];
                p.y=d.y+fy[i];
                p.step=d.step+1;
                if(p.ok())
                {
                    if(p==en)return p.step;
                    vis[d.x][d.y]=1;
                    que[++coun]=p;
                }
            }
        }
    }
    int main()
    {
        int fry,eny;
        char frx,enx;
        while(~scanf("%c%d %c%d",&frx,&fry,&enx,&eny))
        {
            fr.x=frx-'a';
            fr.y=fry-1;
            en.x=enx-'a';
            en.y=eny-1;
            printf("To get from %c%d to %c%d takes %d knight moves.
    ",frx,fry,enx,eny,bfs());
            getchar();
        }
        return 0;
    }

      

  • 相关阅读:
    ElasticSearch 2 (10)
    zookeeper 配置
    zookeeper
    ES 聚合函数
    win 7安装 linux
    Elasticsearch分布式搜索集群配置
    Elasticsearch 插件安装
    为Elasticsearch添加中文分词,对比分词器效果
    .net 4.0 网站发布(转)
    ssm 网页
  • 原文地址:https://www.cnblogs.com/flipped/p/5183767.html
Copyright © 2011-2022 走看看