您的位置:首页 > 其它

【杭电】[2717]Catch That Cow

2016-03-18 23:14 330 查看




这里用了广搜

也就是每次

对m+1,m-1,m*2判断

遇到还没到过的点就加入搜索队列

直到目标点有了记录

需要注意的是给搜索加入越界判断

防止有数组超限等情况

#include<stdio.h>
#include<string.h>
#include<queue>
using namespace std;
int n,e;
int MAX=100200;
int dis[100200];
void bfs(int m) {
queue<int>q;
q.push(m);
while(q.front()!=e) {
int t=q.front();
if(t+1<MAX&&!dis[t+1]) {
dis[t+1]=dis[t]+1;
q.push(t+1);
}
if(t-1>=0&&!dis[t-1]) {
dis[t-1]=dis[t]+1;
q.push(t-1);
}
if(t*2<MAX&&!dis[t*2]) {
dis[t*2]=dis[t]+1;
q.push(t*2);
}
if(dis[e])
break;
q.pop();
}
return ;
}
int main() {
while(scanf("%d %d",&n,&e)!=EOF) {
memset(dis,0,sizeof(dis));
bfs(n);
printf("%d\n",dis[e]);
}
return 0;
}


题目地址:【杭电】[2717]Catch That Cow
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  杭电 广搜