poj3278 优先队列

给你两个点N,K,从N到K,你有三种移动方案:①N-1②N+1③N*2让你用这三种方案达到K点,问最少需要多少步?

#include<iostream>
#include<algorithm>
#include<queue>
#include<string.h>
#include<cstdio>
#define max 100001
using namespace std;
struct node
{
    int n;
    int step;
    bool friend operator <  ( node  a , node  b )
    {
        return a.step>b.step;
    }
};
int N,K;
int vis[100010];
void bfs(int N)
{
    int ans;
    priority_queue<node>q;
    node p,tem;
    p.step=0;
    p.n=N;
    q.push(p);
    while(!q.empty())
    {
        tem=q.top();
        q.pop();
        if(tem.n==K)
        {
            printf("%d\n",tem.step);
           // printf("ans=%d\n",tem.n);
            return ;
        }
        if(tem.n-1>=0&&tem.n-1<max&&!vis[tem.n-1])
        {
            vis[tem.n-1]=1;
            p.n=tem.n-1;
            p.step=tem.step+1;
            q.push(p);
        }
        if(tem.n+1>=0&&tem.n+1<max&&!vis[tem.n+1])
        {
            vis[tem.n+1]=1;
            p.n=tem.n+1;
            p.step=tem.step+1;
            q.push(p);
        }
        if(tem.n*2>=0&&tem.n*2<max&&!vis[tem.n*2])
        {
            vis[tem.n*2]=1;
            p.n=tem.n*2;
            p.step=tem.step+1;
            q.push(p);
        }
    }
}
int main()
{
    while(scanf("%d%d",&N,&K)!=EOF)
    {
        memset(vis,0,sizeof(vis));
        bfs(N);
       // printf("%d\n",bfs(N));
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值