Luogu P4289 [HAOI2008]移动玩具

NULL

在一个4*4的方框内摆放了若干个相同的玩具,某人想将这些玩具重新摆放成为他心中理想的状态,规定移动时只能将玩具向上下左右四个方向移动,并且移动的位置不能有玩具,请你用最少的移动次数将初始的玩具状态移动到某人心中的目标状态。

EINS

很显然地发现,这道题搜索树的深度几乎是无穷的,易于想到用BFS求解. ${4 * 4}$的方阵,总共状态的个数不过 ${65535}$ 种,这告诉我们很普通的BFS就能AC本题.看到题目中每个节点的状态只有 ${0, 1}$ 两种,不难想到使用二位(二进制)哈希判重.队列手写,减小一些常数.

ZWEI

每个状态的容器

1
2
3
4
5
6
7
8
9
10
11
struct StandNode
{
bool a[16];

inline int get_hash ()
{
register int ret = a[0];
for (rint i = 1; i <= 15; i ++) ret = (ret<<1) + a[i];
return ret;
}
} nico_STA, nico_FIN;

get_hash() 用来求解每个状态的哈希值, nico_STAnico_nico_FIN 存储初始状态和结束状态.

队列元素

1
2
3
4
5
struct QueueNode
{
StandNode a;
int ste;
} que[65537];

存储当前状态和步数

主程序

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
int main ()
{
input ();
int FIN = nico_FIN.get_hash();

register int head = 0, tail = 1, diff, xpos, kiana;
que[tail].a = nico_STA;
sjb[nico_STA.get_hash()] = true;
while (head < tail)
{
head ++;
if (que[head].a.get_hash() == FIN)
{
printf ("%d", que[head].ste);
return 0;
}
for (rint i = 0; i <= 15; i ++) nico_bfswork (i, i % 4, head, tail);
}
puts ("No Solution");
return 0;
}

BFS操作函数

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
inline void nico_bfswork (register int diff, register int xpos, register int head, register int &tail)
{
register StandNode ellias; register int kiana;
if (xpos && !que[head].a.a[diff - 1])
{
ellias = que[head].a, swap (ellias.a[diff], ellias.a[diff - 1]);
kiana = ellias.get_hash ();
if (!sjb[kiana]) que[++ tail].a = ellias, que[tail].ste = que[head].ste + 1, sjb[kiana] = true;
}
if (xpos <= 2 && !que[head].a.a[diff + 1])
{
ellias = que[head].a, swap (ellias.a[diff], ellias.a[diff + 1]);
kiana = ellias.get_hash ();
if (!sjb[kiana]) que[++ tail].a = ellias, que[tail].ste = que[head].ste + 1, sjb[kiana] = true;
}
if (diff >= 4 && !que[head].a.a[diff - 4])
{
ellias = que[head].a, swap (ellias.a[diff], ellias.a[diff - 4]);
kiana = ellias.get_hash ();
if (!sjb[kiana]) que[++ tail].a = ellias, que[tail].ste = que[head].ste + 1, sjb[kiana] = true;
}
if (diff <= 11 && !que[head].a.a[diff + 4])
{
ellias = que[head].a, swap (ellias.a[diff], ellias.a[diff + 4]);
kiana = ellias.get_hash ();
if (!sjb[kiana]) que[++ tail].a = ellias, que[tail].ste = que[head].ste + 1, sjb[kiana] = true;
}
}

枚举四种方向, 判断是否可行, 加入队列. 特别提醒: tail 一定要取地址

DREI

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#pragma GCC optimize ("Ofast", 3)
#pragma G++ optimize ("Ofast", 3)

#include <cstdio>
#include <map>

using namespace std;

#define rint register int
#define swap(x,y) ((y)^=(x)^=(y)^=(x))
#define gc() getchar()

struct StandNode
{
bool a[16];

inline int get_hash ()
{
register int ret = a[0];
for (rint i = 1; i <= 15; i ++) ret = (ret<<1) + a[i];
return ret;
}
} nico_STA, nico_FIN;

struct QueueNode
{
StandNode a;
int ste;
} que[65537];

inline void input ()
{
register char c[5];
register int pos = 0;
for (rint t = 1; t <= 4; t ++)
{
scanf ("%s", c);
for (rint i = 0; i <= 3; i ++) nico_STA.a[pos ++] = c[i] - '0';
}
pos = 0;
for (rint t = 1; t <= 4; t ++)
{
scanf ("%s", c);
for (rint i = 0; i <= 3; i ++) nico_FIN.a[pos ++] = c[i] - '0';
}
}

map <int, bool> sjb;

inline void nico_bfswork (register int diff, register int xpos, register int head, register int &tail)
{
register StandNode ellias; register int kiana;
if (xpos && !que[head].a.a[diff - 1])
{
ellias = que[head].a, swap (ellias.a[diff], ellias.a[diff - 1]);
kiana = ellias.get_hash ();
if (!sjb[kiana]) que[++ tail].a = ellias, que[tail].ste = que[head].ste + 1, sjb[kiana] = true;
}
if (xpos <= 2 && !que[head].a.a[diff + 1])
{
ellias = que[head].a, swap (ellias.a[diff], ellias.a[diff + 1]);
kiana = ellias.get_hash ();
if (!sjb[kiana]) que[++ tail].a = ellias, que[tail].ste = que[head].ste + 1, sjb[kiana] = true;
}
if (diff >= 4 && !que[head].a.a[diff - 4])
{
ellias = que[head].a, swap (ellias.a[diff], ellias.a[diff - 4]);
kiana = ellias.get_hash ();
if (!sjb[kiana]) que[++ tail].a = ellias, que[tail].ste = que[head].ste + 1, sjb[kiana] = true;
}
if (diff <= 11 && !que[head].a.a[diff + 4])
{
ellias = que[head].a, swap (ellias.a[diff], ellias.a[diff + 4]);
kiana = ellias.get_hash ();
if (!sjb[kiana]) que[++ tail].a = ellias, que[tail].ste = que[head].ste + 1, sjb[kiana] = true;
}
}

signed main ()
{
input ();
int FIN = nico_FIN.get_hash();

register int head = 0, tail = 1, diff, xpos, kiana;
que[tail].a = nico_STA;
sjb[nico_STA.get_hash()] = true;
while (head < tail)
{
head ++;
if (que[head].a.get_hash() == FIN)
{
printf ("%d", que[head].ste);
return 0;
}
for (rint i = 0; i <= 15; i ++) nico_bfswork (i, i % 4, head, tail);
}
puts ("No Solution");
return 0;
}

Comments

Please contact the Administrator directly for emergency.





GitHub release (latest by date including pre-releases) GitHub release (latest by date including pre-releases) GitHub repo size GitHub repo size PictureBed PictureBed

Blog content follows the Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0) License

Copyright 2017-2021 ELLIAS views, viewersLoading... Loading...
MOE ICP 辽ICP备20009666号-1 | MOE ICP MOEICP备20211096号