hdu1067 bfs

来源:互联网 发布:大话手游神兵升级数据 编辑:程序博客网 时间:2024/05/17 23:28

Gap

Time Limit: 20000/10000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 448    Accepted Submission(s): 249


Problem Description
Let's play a card game called Gap. 
You have 28 cards labeled with two-digit numbers. The first digit (from 1 to 4) represents the suit of the card, and the second digit (from 1 to 7) represents the value of the card.

First, you shu2e the cards and lay them face up on the table in four rows of seven cards, leaving a space of one card at the extreme left of each row. The following shows an example of initial layout.



Next, you remove all cards of value 1, and put them in the open space at the left end of the rows: "11" to the top row, "21" to the next, and so on.

Now you have 28 cards and four spaces, called gaps, in four rows and eight columns. You start moving cards from this layout.



At each move, you choose one of the four gaps and fill it with the successor of the left neighbor of the gap. The successor of a card is the next card in the same suit, when it exists. For instance the successor of "42" is "43", and "27" has no successor.

In the above layout, you can move "43" to the gap at the right of "42", or "36" to the gap at the right of "35". If you move "43", a new gap is generated to the right of "16". You cannot move any card to the right of a card of value 7, nor to the right of a gap.

The goal of the game is, by choosing clever moves, to make four ascending sequences of the same suit, as follows.



Your task is to find the minimum number of moves to reach the goal layout.
 

Input
The input starts with a line containing the number of initial layouts that follow.

Each layout consists of five lines - a blank line and four lines which represent initial layouts of four rows. Each row has seven two-digit numbers which correspond to the cards.
 

Output
For each initial layout, produce a line with the minimum number of moves to reach the goal layout. Note that this number should not include the initial four moves of the cards of value 1. If there is no move sequence from the initial layout to the goal layout, produce "-1".
 

Sample Input
412 13 14 15 16 17 2122 23 24 25 26 27 3132 33 34 35 36 37 4142 43 44 45 46 47 1126 31 13 44 21 24 4217 45 23 25 41 36 1146 34 14 12 37 32 4716 43 27 35 22 33 1517 12 16 13 15 14 1127 22 26 23 25 24 2137 32 36 33 35 34 3147 42 46 43 45 44 4127 14 22 35 32 46 3313 17 36 24 44 21 1543 16 45 47 23 11 2625 37 41 34 42 12 31
 

Sample Output
03360-1
 

Source
Asia 2003(Aizu Japan)
 

Recommend
JGShining
搜索比较容易主要是判重~
//hash判重
#include <iostream>#include <cstring>#include <cstdio>#include <queue>using namespace std;const int MOD=1000007;struct node{    int map[10][10];    int d;};bool vis[MOD];long long gethash(node &t){    int tmp[70],k=0;    memset(tmp,0,sizeof(tmp));    int i,j;    for(i=0;i<4;i++)    {        for(j=0;j<8;j++)        {            tmp[k++]=t.map[i][j]/10;            tmp[k++]=t.map[i][j]%10;        }    }    long long hash=0;    for(i=0;i<k;i++)    {        hash=hash*7+tmp[i];    }    hash=(hash&0x7fffffff)%MOD;    //hash=hash%MOD;    return hash;}int aim[4][8]={    {11,12,13,14,15,16,17,0},    {21,22,23,24,25,26,27,0},    {31,32,33,34,35,36,37,0},    {41,42,43,44,45,46,47,0}};int getaim(node &t){    int i,j;    for(i=0;i<4;i++)    {        for(j=0;j<8;j++)        {            if(t.map[i][j]!=aim[i][j])                return 0;        }    }    return 1;}int change(node &t,int num){    int i,j;    for(i=0;i<4;i++)    {        for(j=0;j<8;j++)        {            if(t.map[i][j]==num+1)            {                t.map[i][j]=0;                return 1;            }        }    }    return 0;}int bfs(node t){    t.map[0][0]=11;    t.map[1][0]=21;    t.map[2][0]=31;    t.map[3][0]=41;    t.d=0;    memset(vis,0,sizeof(vis));    int hash=gethash(t);    vis[hash]=1;    queue<node> q;    q.push(t);    while(!q.empty())    {        t=q.front();        q.pop();        if(getaim(t))            return t.d;        int i,j;        for(i=0;i<4;i++)        {            for(j=1;j<8;j++)            {                if(t.map[i][j]==0&&t.map[i][j-1]%10!=7&&t.map[i][j-1]!=0)                {                    node cur=t;                    change(cur,cur.map[i][j-1]);                    cur.map[i][j]=cur.map[i][j-1]+1;                    cur.d=cur.d+1;                    hash=gethash(cur);                    if(!vis[hash])                    {                        vis[hash]=1;                        q.push(cur);                    }                }            }        }    }    return -1;}int main(){    int n;    scanf("%d",&n);    while(n--)    {        int i,j;        node t;        memset(t.map,0,sizeof(t.map));        for(i=0;i<4;i++)        {            for(j=1;j<8;j++)            {                scanf("%d",&t.map[i][j]);                if(t.map[i][j]%10==1)                    t.map[i][j]=0;            }        }        int res=bfs(t);        printf("%d\n",res);    }    return 0;}


原创粉丝点击