hdu.1067.Gap(bfs+hash)
Gap
Time Limit: 20000/10000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 690 Accepted Submission(s): 380
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.
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.
12 13 14 15 16 17 21
22 23 24 25 26 27 31
32 33 34 35 36 37 41
42 43 44 45 46 47 11
26 31 13 44 21 24 42
17 45 23 25 41 36 11
46 34 14 12 37 32 47
16 43 27 35 22 33 15
17 12 16 13 15 14 11
27 22 26 23 25 24 21
37 32 36 33 35 34 31
47 42 46 43 45 44 41
27 14 22 35 32 46 33
13 17 36 24 44 21 15
43 16 45 47 23 11 26
25 37 41 34 42 12 31
33
60
-1
#include<stdio.h>
#include<queue>
#include<string.h>
typedef long long ll ;
int T ;
struct Map
{
int step ;
int map[][] ;
}ans , tmp ;
const int bas = ;
const int mod = + ;
struct edge
{
ll w ;
int nxt ;
}e[mod];
int H[mod] , E ;
void insert (ll x)
{
int y = x % mod ;
if (y < ) y += mod ;
e[++ E].w = y ;
e[E].nxt = H[y] ;
H[y] = E ;
} bool find (ll x)
{
int y = x % mod ;
if (y < ) y += mod ;
for (int i = H[y] ; i ; i = e[i].nxt) {
if (e[i].w == x) return true ;
}
return false ;
}
void bfs (Map ans)
{
std::queue<Map> q ;
while (!q.empty ()) q.pop () ;
memset (H , , sizeof(H)) ; E = ;
ans.step = ;
q.push (ans) ;
while (!q.empty ()) {
ans = q.front () ; q.pop () ;
bool flag = ;
for (int i = ; i < && flag ; i ++) for (int j = ; j < && flag ; j ++) if (ans.map[i][j] != (i + ) * + j + ) flag = ;
if (flag ) {
printf ("%d\n" , ans.step) ;
return ;
}
for (int i = ; i < ; i ++) {
for (int j = ; j < ; j ++) {
tmp = ans ;
if (ans.map[i][j] == ) {
int num = ans.map[i][j - ] + ;
// printf ("num=%d\n" , num ) ;
// printf ("(%d,%d)\n" , i , j ) ;
if ((num % > )|| (num % == )) continue ;
for (int s = ; s < ; s ++) {
for (int t = ; t < ; t ++) {
if (ans.map[s][t] == num) {
tmp.map[i][j] = num ;
tmp.map[s][t] = ;
}
}
}
ll rhs = ;
for (int e = ; e < ; e ++) {
for (int f = ; f < ; f ++) {
rhs = (rhs * bas + tmp.map[e][f]) % mod ;
}
}
// printf ("rhs=%lld\n" , rhs) ;
if ( !find (rhs)) insert (rhs) ;
else continue ;
tmp.step ++ ;
q.push (tmp) ;
}
}
}
}
puts ("-1") ;
} int main ()
{
//freopen ("a.txt" , "r" , stdin ) ;
scanf ("%d" , &T) ;
while (T --) {
for (int i = ; i < ; i ++) for (int j = ; j < ; j ++) scanf ("%d" , &ans.map[i][j]) ;
for (int i = ; i < ; i ++) for (int j = ; j < ; j ++) if (ans.map[i][j] % == ) ans.map[i][j] = ;
ans.map[][] = ; ans.map[][] = ; ans.map[][] = ; ans.map[][] = ;
/* for (int i = 0 ; i < 4 ; i ++) {
for (int j = 0 ; j < 8 ; j ++) {
printf ("%2d " , ans.map[i][j]) ;
}
puts ("") ;
}*/
bfs (ans) ;
}
return ;
}
hash有些没准心,我用那种叫bkdhash,虽说使用上成功率颇高,但我这边交了三发才过。
还有一开始错误认为每个出队的都会产生15种状态,事实上只用4种。
hdu.1067.Gap(bfs+hash)的更多相关文章
- HDU - 1067 Gap (bfs + hash) [kuangbin带你飞]专题二
		题意: 起初定28张卡牌的排列,把其中11, 21, 31, 41移动到第一列,然后就出现四个空白,每个空白可以用它的前面一个数的下一个数填充,例如43后面的空格可以用44填充,但是47后面即 ... 
- HDU 1067 Gap
		HDU 1067 Gap Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) P ... 
- HDU-1043 Eight八数码 搜索问题(bfs+hash 打表 IDA* 等)
		题目链接 https://vjudge.net/problem/HDU-1043 经典的八数码问题,学过算法的老哥都会拿它练搜索 题意: 给出每行一组的数据,每组数据代表3*3的八数码表,要求程序复原 ... 
- 【BZOJ】1054: [HAOI2008]移动玩具(bfs+hash)
		http://www.lydsy.com/JudgeOnline/problem.php?id=1054 一开始我还以为要双向广搜....但是很水的数据,不需要了. 直接bfs+hash判重即可. # ... 
- [BZOJ1054][HAOI2008]移动玩具 bfs+hash
		1054: [HAOI2008]移动玩具 Time Limit: 10 Sec Memory Limit: 162 MBSubmit: 2432 Solved: 1355[Submit][Stat ... 
- NOIP 模拟 玩积木 - 迭代加深搜索 / bfs+hash+玄学剪枝
		题目大意: 有一堆积木,0号节点每次可以和其上方,下方,左上,右下的其中一个交换,问至少需要多少次达到目标状态,若步数超过20,输出too difficult 目标状态: 0 1 1 2 2 2 3 ... 
- [hdu 1067]bfs+hash
		题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1067 queue里面果然不能放vector,还是自己写的struct比较省内存…… #include& ... 
- BFS+Hash(储存,判重) HDOJ 1067 Gap
		题目传送门 题意:一个图按照变成指定的图,问最少操作步数 分析:状态转移简单,主要是在图的存储以及判重问题,原来队列里装二维数组内存也可以,判重用神奇的hash技术 #include <bits ... 
- 【hdu 1067】Gap
		Time Limit: 20000/10000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission( ... 
随机推荐
- 根据html容器大小和显示文字多少调节字体大小
			在做html相关的东西的时候经常会遇到这样的问题,容器大小(长x宽)固定,容器包含内容(特指文字)多少不固定,这个时候就让人很苦恼了,将字体大小设置成多少才合适呢?下面看看我的解决思路: 首先要知道网 ... 
- 关于git不区分文件名大小写的处理
			今天遇到了git不区分文件名大小写的问题,一开始着实郁闷了一把. 处理办法: windows下在git中修改文件的大小写 git mv --force myfile MyFile 或者 git mv ... 
- AngularJs ngList、ngRepeat、ngModelOptions
			ngList 在文本输入的分隔的字符串和字符串数组间做转换,可以是一个固定的字符串分隔符(默认逗号)或正则表达式. 格式:ng-list=”value” value:表达式 通过这个值分隔字符串. ... 
- Code笔记 之:防盗链(图片)
			图片防盗链 参考:http://bbs.csdn.net/topics/330080045 应该是”10种图片防盗的方法“,而不是”10种图片防盗链的方法“,不过看搜索防盗链的人要多一点,所 ... 
- 解决Eclipse 项目报错:Unbound classpath container
			Eclipse出现下面两条报错: The project cannot be built until build path errors are resolved HelloWord Unknown ... 
- JavaWeb---总结(十七)JSP中的九个内置对象
			一.JSP运行原理 每个JSP 页面在第一次被访问时,WEB容器都会把请求交给JSP引擎(即一个Java程序)去处理.JSP引擎先将JSP翻译成一个_jspServlet(实质上也是一个servlet ... 
- 深入JVM-锁与并发
			一.锁在Java虚拟机中的实现与优化 1.1 偏向锁 偏向锁是JDK 1.6 提出的一种锁优化方式.其核心思想是,如果程序没有竞争,则取消之前已经取得锁的线程同步操作.也就说,若某一锁被线程获取后,便 ... 
- openssl生成https证书 (转)
			1.首先要生成服务器端的私钥(key文件):openssl genrsa -des3 -out server.key 1024运行时会提示输入密码,此密码用于加密key文件去除key文件口令的命令:o ... 
- tomcat添加https
			1.下载依赖包 wget http://archive.apache.org/dist/apr/apr-1.4.5.tar.gz wget http://archive.apache. ... 
- HTML学习笔记——post表单
			1>form1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http:// ... 
