poj 3278 Catch That Cow bfs+注意范围

Posted karshey

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了poj 3278 Catch That Cow bfs+注意范围相关的知识,希望对你有一定的参考价值。

错了好几次,分别是:
RE 运行时错误,因为访问了下标为-1的数组。定位在搜索-1方向的条件。
MLE 内存超限,q.push没有筛选,重复的都放进去就会MLE
WA 忘记多组样例了。

注意,为了防止2的数字太大,要有if(temp.n<=k&&v[temp.n2]==0) 。

#include<iostream>
#include<string.h>
#include<queue>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int,int> pii;
#define pb push_back
#define fi first
#define se second
#define mem(a,x) memset(a,x,sizeof(a));
#define db double 
#define fir(i,a,n) for(int i=a;i<=n;i++)
#define debug(x) cout<<#x<<" "<<x<<endl;

const int inf=0x3f3f3f3f;
const int MOD=1e9+7;
//C======================BFS 范围不要乱搞 
const int N=1e5+10;
int n,k;
int ans=0;
int v[2*N+10];
struct node

	int n,anss;
;
void bfs()

	queue<node>q;
	q.push(n,0);
	v[n]=1;
	while(q.size())
	
		node temp=q.front();
		q.pop();
		
		//-1
		if(temp.n>0&&v[temp.n-1]==0) //不能等于0 
		
			v[temp.n-1]=1;
			node temp1=temp.n-1,temp.anss+1;
			if(temp1.n==k)
			
				ans=temp1.anss;return;
			
			q.push(temp1);
		
		
		//+1
		if(temp.n<=k&&v[temp.n+1]==0) 
		
			v[temp.n+1]=1;
			node temp1=temp.n+1,temp.anss+1;
			if(temp1.n==k)
			
				ans=temp1.anss;return;
			
			q.push(temp1);
		
		
		//*2
		if(temp.n<=k&&v[temp.n*2]==0) 
		
			v[temp.n*2]=1;
			node temp1=temp.n*2,temp.anss+1;
			if(temp1.n==k)
			
				ans=temp1.anss;return;
			
			q.push(temp1);
		
	

int main()

	while(cin>>n>>k)
	
		ans=0;
		mem(v,0);
		bfs();
		cout<<ans<<endl;
	 

以上是关于poj 3278 Catch That Cow bfs+注意范围的主要内容,如果未能解决你的问题,请参考以下文章

POJ 3278 Catch That Cow

poj3278Catch That Cow

POJ 3278: Catch That Cow

poj3278 Catch That Cow

POJ 3278 - Catch That Cow - [BFS]

poj3278Catch That Cow