程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> HDU1195Open the Lock(BFS)

HDU1195Open the Lock(BFS)

編輯:C++入門知識

HDU1195Open the Lock(BFS)


Open the Lock

Description

Now an emergent task for you is to open a password lock. The password is consisted of four digits. Each digit is numbered from 1 to 9.
Each time, you can add or minus 1 to any digit. When add 1 to '9', the digit will change to be '1' and when minus 1 to '1', the digit will change to be '9'. You can also exchange the digit with its neighbor. Each action will take one step.

Now your task is to use minimal steps to open the lock.

Note: The leftmost digit is not the neighbor of the rightmost digit.

Input

The input file begins with an integer T, indicating the number of test cases.

Each test case begins with a four digit N, indicating the initial state of the password lock. Then followed a line with anotther four dight M, indicating the password which can open the lock. There is one blank line after each test case.

Output

For each test case, print the minimal steps in one line.

Sample Input

 2
1234
2144

1111
9999 

Sample Output

 2
4 
#include
#include
#include
using namespace std;

struct node
{
    int a;
    int t;
};
int s,e;
int toDigit(int a[])
{
    int ans=0;
    for(int i=0;i<4;i++)
        ans=ans*10+a[i];
    return ans;
}
void toSprit(int a[],int ans)
{
    int i=4;
    while(i>0)
    {
        a[--i]=ans%10; ans/=10;
    }
}
int bfs()
{
    queueq;
    node p,tp;
    int vist[10000]={0},a[6];

    if(s==e)
        return 0;
    p.a=s; p.t=0;
    q.push(p);
    vist[s]=1;
    while(!q.empty())
    {
        p=q.front(); q.pop();
        toSprit(a,p.a);
        tp.t=p.t+1;
        for(int i=0;i<4;i++)
        {
            if(a[i]==9)  a[i]=1;//+1
             else        a[i]+=1;
            tp.a=toDigit(a);
            if(tp.a==e) return tp.t;
            if(vist[tp.a]==0)
                q.push(tp),vist[tp.a]=1;
            if(a[i]==1)a[i]=9; else a[i]--;

            if(a[i]==1) //-1
                a[i]=9;
            else a[i]-=1;
            tp.a=toDigit(a);
            if(tp.a==e)
                return tp.t;
            if(vist[tp.a]==0)
                q.push(tp),vist[tp.a]=1;
                if(a[i]==9)a[i]=1;else a[i]++;

            if(i<3) //與前一個交換
            {
                int tem=a[i];
                a[i]=a[i+1];
                a[i+1]=tem;
                tp.a=toDigit(a);
                if(tp.a==e)
                return tp.t;
                if(vist[tp.a]==0)
                q.push(tp),vist[tp.a]=1;
                tem=a[i];
                a[i]=a[i+1];
                a[i+1]=tem;
            }
        }
    }
    return -1;
}
int main()
{
    int t;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%d%d",&s,&e);
        int time=bfs();
        printf("%d\n",time);
    }
}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved