首页 技术 正文
技术 2022年11月21日
0 收藏 839 点赞 3,413 浏览 3474 个字

Gap

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

Problem DescriptionLet’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.
hdu.1067.Gap(bfs+hash)
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.
hdu.1067.Gap(bfs+hash)
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.
hdu.1067.Gap(bfs+hash)
Your task is to find the minimum number of moves to reach the goal layout. InputThe 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. OutputFor 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 Input4

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

 Sample Output0
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种。

相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:8,965
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,486
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,331
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,114
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,747
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,781