• OpenJudge/Poj 1915 Knight Moves


    1.链接地址:

    http://bailian.openjudge.cn/practice/1915

    http://poj.org/problem?id=1915

    2.题目:

    总Time Limit:
    1000ms
    Memory Limit:
    65536kB
    Description
    Background
    Mr Somurolov, fabulous chess-gamer indeed, asserts that no one else but him can move knights from one position to another so fast. Can you beat him?
    The Problem
    Your task is to write a program to calculate the minimum number of moves needed for a knight to reach one point from another, so that you have the chance to be faster than Somurolov.
    For people not familiar with chess, the possible knight moves are shown in Figure 1.
    Input
    The input begins with the number n of scenarios on a single line by itself.
    Next follow n scenarios. Each scenario consists of three lines containing integer numbers. The first line specifies the length l of a side of the chess board (4 <= l <= 300). The entire board has size l * l. The second and third line contain pair of integers {0, ..., l-1}*{0, ..., l-1} specifying the starting and ending position of the knight on the board. The integers are separated by a single blank. You can assume that the positions are valid positions on the chess board of that scenario.
    Output
    For each scenario of the input you have to calculate the minimal amount of knight moves which are necessary to move from the starting point to the ending point. If starting point and ending point are equal,distance is zero. The distance must be written on a single line.
    Sample Input
    3
    8
    0 0
    7 0
    100
    0 0
    30 50
    10
    1 1
    1 1
    Sample Output
    5
    28
    0
    Source
    TUD Programming Contest 2001, Darmstadt, Germany

    3.思路:

    4.代码:

     1 #include<stdio.h>
     2 #include<iostream>
     3 #include<queue>
     4 using namespace std;
     5 typedef struct
     6 {
     7     int row;
     8     int col;
     9     //int step;
    10 }data;
    11 int a[300][300];
    12 int colStep[8]={1,2,-1,-2,1,2,-1,-2};
    13 int rowStep[8]={2,1,-2,-1,-2,-1,2,1};
    14 bool in(int row,int col,int size)
    15 {
    16     if(row<0||row>=size) return false;
    17     if(col<0||col>=size) return false;
    18     return true;
    19 }
    20 void initArray(int size)
    21 {
    22     int i,j;
    23     for(i=0;i<size;i++)
    24     {
    25         for(j=0;j<size;j++)
    26         {
    27             a[i][j]=-1;
    28         }
    29     }
    30 }
    31 int f(int i,int j,int m,int n,int size)
    32 {
    33     queue<data> q;
    34     int k;
    35     int newRow,newCol;
    36     data start,aData;
    37     start.row=i;
    38     start.col=j;
    39     initArray(size);
    40     //start.step=1;
    41     a[i][j]=0;
    42     q.push(start);
    43     while(!q.empty())
    44     {
    45         aData=q.front();
    46         if(aData.row==m&&aData.col==n)
    47         {
    48             return a[aData.row][aData.col];
    49         }
    50         else
    51         {
    52             for(k=0;k<8;k++)
    53             {
    54                 newRow=aData.row+rowStep[k];
    55                 newCol=aData.col+colStep[k];
    56                 if(in(newRow,newCol,size))
    57                 {
    58                     if(a[newRow][newCol]==-1)
    59                     {
    60                         data newData;
    61                         newData.col=newCol;
    62                         newData.row=newRow;
    63                         a[newRow][newCol]=a[aData.row][aData.col]+1;
    64                         q.push(newData);
    65                     }
    66                 }
    67             }
    68         }
    69         q.pop();
    70     }
    71     return 0;
    72 }
    73 int main()
    74 {
    75     int sum,k;
    76     int i,j,m,n,size;
    77     cin>>sum;
    78     for(k=0;k<sum;k++)
    79     {
    80         cin>>size>>i>>j>>m>>n;
    81         cout<<f(i,j,m,n,size)<<endl;
    82     }
    83     return 1;
    84 }
  • 相关阅读:
    第十四回 基础才是重中之重~委托实例的几种定义方式(规规矩矩method,逻辑简单delegate,层次清晰lambda)
    第十五回 基础才是重中之重~老赵写的CodeTimer是代码性能测试的利器
    第十一回 基础才是重中之重~Conditional特性使代码根据条件在debug或者release模式中执行
    第十二回 基础才是重中之重~.net中的显式事务与隐式事务
    IE绝对定位元素神秘消失或被遮挡的解决方法
    图片按钮样式隐藏文字的
    javascript 保留小数
    Javascript兼容性问题小结(容易导致浏览器不同,又不容易察觉的)
    SQL 随机选取10条数据
    动态添加类和元素样式属性(style and className)
  • 原文地址:https://www.cnblogs.com/mobileliker/p/3574303.html
Copyright © 2020-2023  润新知