现在的位置: 首页 > 综合 > 正文

poj 3278 Catch That Cow

2019年02月20日 ⁄ 综合 ⁄ 共 825字 ⁄ 字号 评论关闭

bfs

#include <iostream>
#include <queue>
const int N = 100010;
 
using namespace std;
 
queue<int> q;
bool vis[N];
int step[N];
 
int bfs(int n, int k)
{
    q.push(n);
    vis[n] = true;
    step[n] = 0;
    while (!q.empty())
    {
        int now = q.front();
        q.pop();
        for (int i = 0; i < 3; i++)
        {
            int next;
            if (i == 0) 
                next = now - 1;
            else if (i == 1) 
                next = now + 1;
            else 
                next = now * 2;
            if (next > N || next < 0)
                continue;
            if (!vis[next])
            {
                q.push(next);
                step[next] = step[now] + 1;
                vis[next] = true;
            }
            if (next == k) 
                return step[next];
        }
    }
    return -1;
}
 
int main()
{
    int n, k;
    while( cin >> n >> k )
    {
        if (n >= k)
            cout << n - k << endl;
        else
        {
            if( bfs( n, k ) )
                cout << bfs(n, k) << endl;
        }
    }
    return 0;
}

抱歉!评论已关闭.