POJ-3278 广度优化搜索入门

Posted 松手丶明晃晃

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了POJ-3278 广度优化搜索入门相关的知识,希望对你有一定的参考价值。

#include<stdio.h>
#include<stdlib.h>
struct node{
    int x;
    int s;
}s[400005];
int main(){
    int n,m,book[400005]={0};
        scanf("%d %d",&n,&m);
        if(n==m)
            printf("0\n");
        else{
            int tail=1,head=1;
                s[tail].x=n;
                s[tail++].s=0;
                book[n]=1;
            int next[3]={1,-1,2};
            int flag=0;
            while(head<tail){
                for(int i=0;i<3;i++){
                    int dx;
                    if(i!=2)
                        dx=s[head].x+next[i];
                    else
                        dx=s[head].x*next[i];
                    if(dx<0||dx>400005)
                        continue;
                        if(book[dx]==0){
                            book[dx]=1;
                            s[tail].x=dx;
                            s[tail++].s=s[head].s+1;
                        }
                        if(dx==m){
                            flag=1;
                            break;
                        }
                }
                    head++;
                    if(flag)
                    break;
            }
            printf("%d\n",s[tail-1].s);
        }
return 0;
}

 

以上是关于POJ-3278 广度优化搜索入门的主要内容,如果未能解决你的问题,请参考以下文章

机试练习01:poj3278 —— 农夫和牛问题

BFS(广度优先搜索)

POJ题目总结

poj3278-简单搜索练习

poj 3278 搜索

搜索POJ3278:Catch That Cow