poj3278-简单搜索练习
Posted ling_xiao007
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了poj3278-简单搜索练习相关的知识,希望对你有一定的参考价值。
解题报告:
1.三种操作,从N到K。简单搜索喽。DFS。
2.状态? 就是坐标了。
3.转移? 三种操作N到next.x喽。
#include <iostream>
#include <cstdio>
#include <queue>
#include <cstring>
using namespace std;
#define N 100000
int n, m, vis[N+10];
int bfs()
memset(vis,0,sizeof(vis));
queue<pair<int,int>> q;
pair<int,int> u, v; //pair使用O(∩_∩)O~
u.first = n; u.second=0;
vis[n] = 1;
q.push(u);
while(!q.empty())
u = q.front(); q.pop();
for(int i = 0;i < 3; i++) //三种操作
v = u;
if (i == 0) v.first -= 1;
else if(i == 1) v.first += 1;
else if(i == 2) v.first *= 2;
if(v.first >= 0 && v.first <= N && !vis[v.first])
vis[v.first] = 1;
v.second++;
q.push(v);
if (v.first == m)
return v.second;
int main()
while(scanf("%d%d", &n, &m) != EOF)
if(n == m) puts("0"); continue;
printf("%d\\n", bfs());
return 0;
以上是关于poj3278-简单搜索练习的主要内容,如果未能解决你的问题,请参考以下文章
POJ - 3278 Catch That Cow 简单搜索