首页 > 代码库 > uva10085 The most distant state(BFS)
uva10085 The most distant state(BFS)
Problem A
The Most Distant State
Input: standard input
Output: standard output
The 8-puzzle is a square tray in which eight square tiles are placed. The remaining ninth square is uncovered. Each tile has a number on it. A tile that is adjacent to the blank space can be slid into that space. A game consists of a starting state and a specified goal state. The starting state can be transformed into the goal state by sliding (moving) the tiles around. The 8-puzzle problem asks you to do the transformation in minimum number of moves.
2 | 8 | 3 |
|
|
| 1 | 2 | 3 |
1 | 6 | 4 | => | 8 |
| 4 | ||
7 |
| 5 |
|
|
| 7 | 6 | 5 |
Start |
|
|
| Goal |
However, our current problem is a bit different. In this problem, given an initial state of the puzzle your are asked to discover a goal state which is the most distant (in terms of number of moves) of all the states reachable from the given state.
Input
The first line of the input file contains an integer representing the number of test cases to follow. A blank line follows this line.
Each test case consists of 3 lines of 3 integers each representing the initial state of the puzzle. The blank space is represented by a 0 (zero). A blank line follows each test case.
Output
For each test case first output the puzzle number. The next 3 lines will contain 3 integers each representing one of the most distant states reachable from the given state. The next line will contain the shortest sequence of moves that will transform the given state to that state. The move is actually the movement of the blank space represented by four directions : U (Up), L (Left), D (Down) and R (Right). After each test case output an empty line.
Sample Input
12 6 4
1 3 7
0 5 8
Sample Output
Puzzle #18 1 5
7 3 6
4 0 2
UURDDRULLURRDLLDRRULULDDRUULDDR
__________________________________________________________________________________________
Rezaul Alam Chowdhury
"A fool looks for happiness in the distance, those who are intelligent grow it under their own feet."
十进制记录状态,bfs以便即可
#include <iostream> #include <cstring> #include <cstdio> #include <map> #include <queue> #define ll long long using namespace std; int T; struct node{ int x,y,st; string ans; }f,Ans; ll ST; map<ll,int> vis; char s[4]={'U','L','D','R'}; int d[4][2]={-1,0,0,-1,1,0,0,1}; ll g[10]; int a[4][4]; void init(){ g[0]=1; for(int i=1;i<10;i++) g[i]=g[i-1]*10; } void read(){ vis.clear(); ST=0; for(int i=0;i<3;i++){ for(int j=0;j<3;j++){ scanf("%d",&a[i][j]); if(a[i][j]==0) f.x=i,f.y=j; ST=ST*10+a[i][j]; } } } int calc(int x,int y){ return (2-x)*3+(2-y); } void solve(int ca){ queue<node> q; f.st=ST,f.ans=""; q.push(f); vis[ST]=1; while(!q.empty()){ node z=q.front(); q.pop(); for(int k=0;k<4;k++){ f.x=z.x+d[k][0]; f.y=z.y+d[k][1]; if(!(f.x>=0&&f.x<3&&f.y>=0&&f.y<3)) continue; int ff=calc(f.x,f.y),zz=calc(z.x,z.y); int fx=z.st/g[ff]%10; f.st=z.st; f.st-=fx*g[ff]; f.st+=fx*g[zz]; if(!vis[f.st]){ vis[f.st]=1; f.ans=z.ans+s[k]; q.push(f); } } if(q.empty()) Ans=z; } printf("Puzzle #%d\n",ca); for(int i=8;i>=0;i--){ if(i%3!=2) printf(" "); printf("%d",Ans.st/g[i]%10); if(i%3==0) printf("\n"); } printf("%s\n",Ans.ans.c_str()); } int main(){ init(); scanf("%d",&T); for(int ca=1;ca<=T;ca++){ read(); solve(ca); } return 0; }
uva10085 The most distant state(BFS)