D广搜

来源:互联网 发布:龙门镖局不好看知乎 编辑:程序博客网 时间:2024/04/30 21:59
<span style="color:#330099;">/*D - 广搜 基础Time Limit:1000MS     Memory Limit:30000KB     64bit IO Format:%I64d & %I64uSubmit StatusDescriptionBackgroundMr 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 ProblemYour 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. InputThe 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.OutputFor 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 Input380 07 01000 030 50101 11 1Sample Output5280By Grant Yuan2014.7.12*/#include<iostream>#include<cstdio>#include<cstring>#include<cstdlib>#include<queue>using namespace std;//char a[9]={'0','a','b','c','d','e','f','g','h'};//char b[9]={'0','1','2','3','4','5','6','7','8'};bool flag[302][302];int next[8][2]={1,2,2,1,-1,2,2,-1,-2,-1,-1,-2,-2,1,1,-2};//char s1[5],s2[2];//char s[10];int x1,x2,y1,y2;//int best=100;int res;typedef struct{  int x;  int y;  int sum;}node;node q[100000];int t;int l;bool can(int x,int y){    if(x<l&&x>=0&&y<l&&y>=0&&flag[x][y]==0)      return 1;    return 0;}int ree;int top,base;void slove(){int xx,yy,count,m,n;     node q1;    while(top>=base){        if(q[base].x==x2&&q[base].y==y2){            ree=q[base].sum;            break;            }      else{          m=q[base].x;        n=q[base].y;        count=q[base].sum;        for(int i=0;i<8;i++)          { xx=m+next[i][0];            yy=n+next[i][1];            if(can(xx,yy)){               // cout<<xx<<" "<<yy<<endl;                flag[xx][yy]=1;                 q[++top].x=xx;                 q[top].y=yy;                 q[top].sum=count+1;              }        }        }base++;      }}int main(){node q1;cin>>t;   while(t--){      cin>>l;      cin>>x1>>y1;      cin>>x2>>y2;       //s1[2]='\0';     //  puts(s1);       top=-1;base=0;       memset(flag,0,sizeof(flag));         flag[x1][y1]=1;         q[++top].x=x1;         q[top].y=y1;         q[top].sum=0;        slove();        printf("%d\n",ree);       }        return 0;}</span>

0 0
原创粉丝点击