码迷,mamicode.com
首页 > 其他好文 > 详细

哈理工oj1181

时间:2015-08-13 23:48:04      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:

 #include<iostream>
 #include<string.h>
 using namespace std;

struct node
{
    int x;//点的坐标
    int y;
    int s;//记录步数
};

int main()
{
    int startx,starty;
    int endx,endy;
    int tx,ty;
    int n,m;
    int k;
    node que[300000];
    int book[500][500];
    int head,tail;
    int next[8][2]={{-1,2},{1,2},{2,1},{2,-1},{1,-2},{-1,-2},{-2,-1},{-2,1}};
    //方向
    while(cin>>startx>>starty>>endx>>endy)
    {
        if(startx==endx&&starty==endy)
        {
            cout<<"0"<<endl;
        }
        else
            {
            int flag=0;
            memset(book,0,sizeof(book));//初始全未被标记过
            head=1;
            tail=1;
            //起止点入队列
            que[tail].x=startx;
            que[tail].y=starty;
            que[tail].s=0;
            book[startx][starty]=1;
            tail++;
            //BFS
            while(head<tail)
            {
                for(k=0;k<8;k++)//遍历8个方向
                {
                    tx=que[head].x+next[k][0];
                    ty=que[head].y+next[k][1];
                    //是否超出范围
                    if(tx<0||tx>300||ty<0||ty>300)
                    {
                        continue;
                    }
                    //未被访问过
                    if(book[tx][ty]==0)
                    {
                        book[tx][ty]=1;
                        //入队列
                        que[tail].x=tx;
                        que[tail].y=ty;
                        que[tail].s=que[head].s+1;
                        tail++;
                        if(tx==endx&&ty==endy)//到达访问的点结束
                        {
                            flag=1;
                            break;
                        }
                    }
                }
                if(flag==1)
                {
                    break;//结束循环
                }
                head++;
            }
            cout<<que[tail-1].s<<endl;
            }
    }
}


 

版权声明:本文为博主原创文章,未经博主允许不得转载。

哈理工oj1181

标签:

原文地址:http://blog.csdn.net/ingnight/article/details/47622853

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!