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

HDU2717:Catch That Cow(BFS 队列)

时间:2018-02-04 00:35:13      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:size   src   class   技术   数据   分享   algo   sed   string   

这是一道用队列实现的BFS基础搜索题,学长给我们加这道题主要是让我们联系数据结构里面的队列,话不多说看代码吧。

技术分享图片
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <algorithm>
#include <queue>
#include <stack>
#define LL long long
#define mem(a) memset(a,0,sizeof(a))
using namespace std;
int vis[100005];
struct node
{
    int x,s;
};
queue<node> q;
int bfs(int N,int K)
{
    while(q.size())
        q.pop();
    node a,t;
    mem(vis);
    a.x=N;
    a.s=0;
    q.push(a);
    vis[N]=1;
    while(q.size())
    {
        a=q.front();
        q.pop();
        if(a.x==K)
            return a.s;
        for(int i=0;i<3;i++)
        {
            if(i==0)
                t.x=a.x+1;
            else if(i==1)
                t.x=a.x-1;
            else
                t.x=a.x*2;
            if(t.x>=0&&t.x<=100000&&!vis[t.x])
            {
                t.s=a.s+1;
                q.push(t);
                vis[t.x]=1;
            }
        }
    }
}
int main()
{
    int N,K;
    scanf("%d%d",&N,&K);
    printf("%d\n",bfs(N,K));
    return 0;
}
View Code

 

HDU2717:Catch That Cow(BFS 队列)

标签:size   src   class   技术   数据   分享   algo   sed   string   

原文地址:https://www.cnblogs.com/zznu17-091041/p/8411138.html

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