hdu 1195 双向bfs

1 篇文章 0 订阅

http://acm.hdu.edu.cn/showproblem.php?pid=1195
这代码好长,不过好多重复的内容。

#include <iostream>
#include <queue>
#include <cstring>
using namespace std;
struct node
{
    int x, step;
};
int vis[10000];
node q1[10000];
node q2[10000];
int c[5],d[5];
int ss[2]={1,-1};
void hash1(int x)
{
    for(int i = 3; i>=0; i--)
    {
        c[i] = x%10;
        x/=10;
    }
}
int rehash()
{
    int a = 0;
    for(int i = 0; i<4; i++)
        a = a*10+d[i];
    return a;
}
int front1,front2,tail1,tail2,tmp;
int bfs(int a, int b)
{
    front1=front2=tail1=tail2=0;
    node temp;
    temp.x=a;
    temp.step=0;
    q1[tail1++] = temp;
    temp.x=b;
    temp.step=0;
    q2[tail2++]=temp;
    vis[a]=1;
    vis[b]=2;
    while(front1<tail1||front2<tail2)
    {
        tmp = tail1;
        for(; front1<tmp; front1++)
        {
            temp = q1[front1];
            hash1(temp.x);
            for(int k = 0; k<2; k++)
            {
                for(int i = 0; i<4; i++)
                {
                    for(int j = 0; j<4; j++)
                        d[j]=c[j];
                    d[i]+=ss[k];
                    if(k==0&&d[i]>9)
                        d[i] = 1;
                    else if(k==1&&d[i]<1)
                        d[i] = 9;
                    int ans = rehash();
                    if(vis[ans]!=1)
                    {
                         if(vis[ans]==2)
                        {
                            int cnt;
                            for(cnt=1; cnt<tail2; cnt++)
                            if(q2[cnt].x==ans)
                                break;
                            return q2[cnt].step+q1[front1].step+1;
                        }
                        vis[ans] = 1;
                        temp.x = ans;
                        temp.step = q1[front1].step+1;
                        q1[tail1++] = temp;
                    }
                }
            }
            for(int i = 0; i<3; i++)
            {
                for(int j = 0; j<4; j++)
                    d[j] = c[j];
                int o = d[i];
                d[i] = d[i+1];
                d[i+1] = o;
                int ans = rehash();
                if(vis[ans]!=1)
                {
                    if(vis[ans]==2)
                    {
                        int cnt;
                        for(cnt=1; cnt<tail2; cnt++)
                            if(q2[cnt].x==ans)
                                break;
                        return q2[cnt].step+q1[front1].step+1;
                    }
                    vis[ans] = 1;
                    temp.x = ans;
                    temp.step = q1[front1].step+1;
                    q1[tail1++] = temp;
                }
            }
        }
        tmp = tail2;
        for(; front2<tmp; front2++)
        {
            temp = q2[front2];
            hash1(temp.x);
            for(int k = 0; k<2; k++)
            {
                for(int i = 0; i<4; i++)
                {
                    for(int j = 0; j<4; j++)
                        d[j]=c[j];
                    d[i]+=ss[k];
                    if(k==0&&d[i]>9)
                        d[i] = 1;
                    else if(k==1&&d[i]<1)
                        d[i] = 9;
                    int ans = rehash();
                    if(vis[ans]!=2)
                    {
                        if(vis[ans]==1)
                        {
                            int cnt;
                            for(cnt = 1; cnt<tail1; cnt++)
                            if(q1[cnt].x==ans)
                                    break;
                            return q1[cnt].step+q2[front2].step+1;
                        }
                        vis[ans] = 2;
                        temp.x = ans;
                        temp.step = q2[front2].step+1;
                        q2[tail2++] = temp;
                    }
                }
            }
            for(int i = 0; i<3; i++)
            {
                for(int j = 0; j<4; j++)
                    d[j] = c[j];
                int o = d[i];
                d[i] = d[i+1];
                d[i+1] = o;
                int ans = rehash();
                if(vis[ans]!=2)
                {
                    if(vis[ans]==1)
                    {
                        int cnt;
                        for(cnt = 1; cnt<tail1; cnt++)
                            if(q1[cnt].x==ans)
                                break;
                        return q1[cnt].step+q2[front2].step+1;
                    }
                    vis[ans] = 2;
                    temp.x = ans;
                    temp.step = q2[front2].step+1;
                    q2[tail2++] = temp;
                }
            }
        }
    }
    return 0;
}
int main()
{
    int t,a,b;
    cin>>t;
    while(t--)
    {
        memset(vis,0,sizeof(vis));
        cin>>a>>b;
        int ans = bfs(a,b);
        cout<<ans<<endl;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值