Description
1 2 3 4
5 6 7 8
9 10 11 12
13 14 15 x
1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4
5 6 7 8 5 6 7 8 5 6 7 8 5 6 7 8
9 x 10 12 9 10 x 12 9 10 11 12 9 10 11 12
13 14 11 15 13 14 11 15 13 14 x 15 13 14 15 x
r-> d-> r->
Input
1 2 3
x 4 6
7 5 8
1 2 3 x 4 6 7 5 8
Output
Sample Input
2 3 4 1 5 x 7 6 8
Sample Output
ullddrurdllurdruldr
类似于拼图游戏,九格拼图怎样才能按顺序拼出来。
刚看这道题时,我并没有觉得它很难,甚至比之前简单直接搜索不就可以了。后来发现这题目不是这么简单,复杂度真是高了去了。搜的题解也是由多种做法,我目前只看了一种,后几种以后慢慢补上。就这一种方法我也有点不理解,STL中queue的复杂度这么高么,都得手写队列。还有为什么要用康拓展开实现100%的哈希,缩小了所占内存?不哈希我也觉得不是很复杂。先挖好坑,以后慢慢补。我得试试用queue和不哈希能不能挂了,目测应该会挂。多看几遍,希望能理解透。
#include #include #include #include using namespace std; struct Node { int state; int s[9]; int location,pre; char path; }node[1000010]; bool vis[1000010]; int f[9]={1,1,2,6,24,120,720,5040,40320}; int dir[4][2]={{-1,0},{1,0},{0,-1},{0,1}}; char op[4]={'u','d','l','r'}; int head,tail; int cantor(int s[]) { int i,j; int num,sum=0; for(i=0;i<9;i++) { num=0; for(j=0;js[i]) num++; sum+=(num*f[i]); } return sum+1; } int bfs(Node now) { int i,j; memset(vis,0,sizeof(vis)); head=tail=0; now.state=cantor(now.s); vis[now.state]=1; node[tail++]=now;//放入队尾,从队尾放元素 Node temp; while(head!=tail)//取出队首元素进行搜索,将符合条件的下一步搜索再放入队列中 { now=node[head++];//取出当前队首元素 if(now.state==1)//123456789的哈希值为1 return head-1; //system("pause"); //cout<<"HEAD:"<=0&&xx<=2&&yy>=0&&yy<=2) { temp=now; temp.s[3*x+y]=temp.s[3*xx+yy];//交换位置 temp.s[3*xx+yy]=9; temp.state=cantor(temp.s); if(!vis[temp.state]) { vis[temp.state]=1; temp.location=xx*3+yy; temp.path=op[i];//保存操作 temp.pre=head-1; node[tail++]=temp; } } } } return -1; } void Print(int i)//压栈,输出路径 { if(i==0) return; Print(node[i].pre); cout<