博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【HDOJ3567】【预处理bfs+映射+康拓展开hash】
阅读量:4935 次
发布时间:2019-06-11

本文共 5601 字,大约阅读时间需要 18 分钟。

Eight II

Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 130000/65536 K (Java/Others)

Total Submission(s): 4541    Accepted Submission(s): 990

Problem Description
Eight-puzzle, which is also called "Nine grids", comes from an old game. 
In this game, you are given a 3 by 3 board and 8 tiles. The tiles are numbered from 1 to 8 and each covers a grid. As you see, there is a blank grid which can be represented as an 'X'. Tiles in grids having a common edge with the blank grid can be moved into that blank grid. This operation leads to an exchange of 'X' with one tile.
We use the symbol 'r' to represent exchanging 'X' with the tile on its right side, and 'l' for the left side, 'u' for the one above it, 'd' for the one below it.
A state of the board can be represented by a string S using the rule showed below.
The problem is to operate an operation list of 'r', 'u', 'l', 'd' to turn the state of the board from state A to state B. You are required to find the result which meets the following constrains:
1. It is of minimum length among all possible solutions.
2. It is the lexicographically smallest one of all solutions of minimum length.
 
Input
The first line is T (T <= 200), which means the number of test cases of this problem.
The input of each test case consists of two lines with state A occupying the first line and state B on the second line.
It is guaranteed that there is an available solution from state A to B.
 
Output
For each test case two lines are expected.
The first line is in the format of "Case x: d", in which x is the case number counted from one, d is the minimum length of operation list you need to turn A to B.
S is the operation list meeting the constraints and it should be showed on the second line.
 
Sample Input
2
12X453786
12345678X
564178X23
7568X4123
 
Sample Output
Case 1: 2
dd
Case 2: 8
urrulldr
题意:强化版本的八数码问题。(数据量T很大..而且要求输出最小字母序的操作方式)
题目分析:对于普通的八数码问题可以使用双向bfs解决,这个强化版本由于数据量过大,使用双向bfs可能也会TLE,而且使用双向bfs时反向bfs的过程不容易按最小字母序输出。
题解:由于起始状态与结束状态只是反映了一堆字母以及空格的相对位置关系,和字母本身的含义无关,所以可以预处理跑出空格X在不同位置下到达所有状态所用的最少操作方 式,然后按照每组数据给出的状态进行映射输出即可。这个过程仍然使用康拓展开进行hash。【注意:对string进行的操作真的很慢,所以康拓展开时使用int存状态,不用string】
1 #include
2 #include
3 #include
4 #include
5 #include
6 #include
7 using namespace std; 8 string str1, str2; 9 bool vis[370000]; 10 int dx[4] = { 1,0,0,-1 }; 11 int dy[4] = { 0,-1,1,0 }; 12 char cs[4] = { 'd','l','r','u' }; 13 int pre[10][370000]; 14 int op[10][370000]; 15 int jc[12]; 16 int kt(int s) //康托展开 17 { 18 int code = 0; 19 int st[9]; 20 for (int i = 8; i >= 0; i--, s /= 10) 21 st[i] = s % 10; 22 for (int i = 0; i<9; i++) 23 { 24 int cnt = 0; 25 for (int j = i + 1; j<9; j++) 26 if (st[j]
pq; 44 queue
pq2; 45 queue
pq3; 46 while (!pq.empty()) { 47 pq.pop(); 48 } 49 while (!pq3.empty()) { 50 pq3.pop(); 51 } 52 while (!pq2.empty()) { 53 pq2.pop(); 54 } 55 int tmps = 0; 56 for (int i = 0; i < 9; i++) { 57 tmps = tmps * 10 + str[i] - '0'; 58 } 59 pq.push(tmps); 60 pq2.push(x); 61 int kt000 = kt(tmps); 62 pq3.push(kt000); 63 vis[kt000] = 1; 64 while (!pq.empty()) { 65 int str0 = pq.front(); pq.pop(); 66 //cout << str0 << endl; 67 int s0 = pq2.front(); pq2.pop(); 68 int kt010 = pq3.front(); pq3.pop(); 69 for (int i = 0; i < 4; i++) { 70 int x0 = s0 / 3; 71 int y0 = s0 % 3; 72 int tx = x0 + dx[i]; 73 int ty = y0 + dy[i]; 74 int s00 = tx * 3 + ty; 75 if (tx >= 0 && ty >= 0 && ty < 3 && tx < 3) { 76 int str00=str0; 77 int skt1 = ((str0) / (mypow(10, (8 - s0)))) % 10; 78 str00 -= skt1*mypow(10,(8-s0)); 79 int skt2= ((str0) / (mypow(10, (8 - s00)))) % 10; 80 str00 += skt2 * mypow(10,(8-s0)); 81 str00 -= skt2 * mypow(10, (8 - s00)); 82 str00 += skt1 * mypow(10, (8 - s0)); 83 //str00[s00] = str0[s0]; 84 int kt0 = kt(str00); 85 //skt++; 86 // cout << skt << endl; 87 // cout << kt0 << endl; 88 if (!vis[kt0]) { 89 vis[kt0] = 1; 90 op[x][kt0] = i; 91 pre[x][kt0] = kt010; 92 pq.push(str00); 93 pq2.push(s00); 94 pq3.push(kt0); 95 } 96 } 97 } 98 } 99 100 }101 int main() {102 int t;103 jc[0] = 1;104 for (int i = 1; i < 9; i++) {105 jc[i] = jc[i - 1] * i;106 }107 int case1 = 1;108 string str[9];109 str[0] = "012345678";110 bfs(str[0], 0);111 // cout << "%%%%%\n";112 str[1] = "102345678";113 bfs(str[1], 1);114 str[2] = "120345678";115 bfs(str[2], 2);116 str[3] = "123045678";117 bfs(str[3], 3);118 str[4] = "123405678";119 bfs(str[4], 4);120 str[5] = "123450678";121 bfs(str[5], 5);122 str[6] = "123456078";123 bfs(str[6], 6);124 str[7] = "123456708";125 bfs(str[7], 7);126 str[8] = "123456780";127 bfs(str[8], 8);128 scanf("%d", &t);129 while (t--) {130 cin >> str1 >> str2;131 int u;132 for (int i = 0; i < 9; i++) {133 if (str1[i] == 'X') {134 str1[i] = '0';135 u = i;136 }137 if (str2[i] == 'X') {138 str2[i] = '0';139 }140 }141 char hash0[10];142 for (int i = 0; i < 9; i++) {143 hash0[str1[i] - '0'] = str[u][i];144 }145 string tmp = "";146 for (int i = 0; i < 9; i++) {147 tmp += hash0[str2[i] - '0'];148 }149 int s1=0, s2=0;150 for (int i = 0; i < 9; i++) {151 s1 = s1 * 10 + str[u][i] - '0';152 }153 for (int i = 0; i < 9; i++) {154 s2 = s2 * 10 + tmp[i] - '0';155 }156 int sta = kt(s1);157 int en = kt(s2);158 stack
stk;159 while (!stk.empty())stk.pop();160 while (sta != en) {161 stk.push(en);162 en = pre[u][en];163 }164 printf("Case %d: %d\n", case1++, stk.size());165 while (!stk.empty()) {166 int sss = stk.top();167 stk.pop();168 if (sss != sta) {169 printf("%c",cs[op[u][sss]]);170 }171 }172 printf("\n");173 }174 return 0;175 }
View Code

 

 

转载于:https://www.cnblogs.com/MekakuCityActor/p/9735741.html

你可能感兴趣的文章
别人整理的DP大全(转)
查看>>
爬楼梯(go语言实现)
查看>>
正则1
查看>>
xpath定位中starts-with、contains和text()的用法
查看>>
AP模式(路由器的几种模式)
查看>>
WPF Canvas实现进度条
查看>>
Printf的缓冲机制
查看>>
Excel Sheet Column Title
查看>>
10247 - Complete Tree Labeling(递推高精度)
查看>>
Swift编程权威指南(第2版)pdf
查看>>
SpringMVC Validation验证(帖子最后有个问题,麻烦大神指点一下)
查看>>
基于Laravel+Swoole开发智能家居后端
查看>>
Dynamic Proxy (动态代理模式)
查看>>
mysql字符集问题
查看>>
【JZOJ4845】【NOIP2016提高A组集训第5场11.2】寻找
查看>>
golang 反射应用(二)
查看>>
java中的继承Object
查看>>
Microsoft dotnetConf 2015 一些整理
查看>>
微信公众平台开发文档 用户分组管理
查看>>
linux 安装mysql
查看>>