-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpuzzle8.cpp
210 lines (183 loc) · 3.98 KB
/
puzzle8.cpp
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
#include <cstdio>
#include <vector>
#include <array>
#include <algorithm>
#include <tuple>
#include "queue.hpp"
struct board {
int e[3][3];
};
constexpr int fact(int i)
{
int p = 1;
for (int j = 2; j <= i; ++j) {
p *= j;
}
return p;
}
int ord(const board& board)
{
int seen[10] = { 0 };
int a = 0;
int k = 8;
for (int r = 0; r < 3; ++r) {
for (int c = 0; c < 3; ++c) {
int v = board.e[r][c];
int o = 0;
for (int i = 1; i < v; ++i) {
if (!seen[i]) { ++o; }
}
a += o * fact(k);
--k;
seen[v] = 1;
}
}
return a;
}
void print_board(const board& b)
{
for (int r = 0; r < 3; ++r) {
for (int c = 0; c < 3; ++c) {
printf("%3d", b.e[r][c]);
}
printf("\n");
}
}
void read_board(board& b)
{
for (int r = 0; r < 3; ++r) {
for (int c = 0; c < 3; ++c) {
scanf("%d", &b.e[r][c]);
}
}
}
void swap(int &a, int &b)
{
int t = a;
a = b;
b = t;
}
std::tuple<int, int> find_space(const board& b)
{
for (int r = 0; r < 3; ++r)
for (int c = 0; c < 3; ++c)
if (b.e[r][c] == 9) return { r, c };
assert(0);
}
board up(const board& b)
{
const auto [r, c] = find_space(b);
if (r == 0) return b;
board o = b;
swap(o.e[r-1][c], o.e[r][c]);
return o;
}
board down(const board& b)
{
const auto [r, c] = find_space(b);
if (r == 2) return b;
board o = b;
swap(o.e[r+1][c], o.e[r][c]);
return o;
}
board left(const board& b)
{
const auto [r, c] = find_space(b);
if (c == 0) return b;
board o = b;
swap(o.e[r][c-1], o.e[r][c]);
return o;
}
board right(const board& b)
{
const auto [r, c] = find_space(b);
if (c == 2) return b;
board o = b;
swap(o.e[r][c+1], o.e[r][c]);
return o;
}
bool is_same(const board& a, const board &b)
{
for (int r = 0; r < 3; ++r)
for (int c = 0; c < 3; ++c)
if (a.e[r][c] != b.e[r][c]) return false;
return true;
}
enum move { L = 1, R = 2, U = 3, D = 4 };
/*
* Return a shortest path from src to dest.
*/
std::vector<int> solve(const board& src, const board& dest)
{
queue<board, fact(9)> q;
int visited[fact(9)];
board parent[fact(9)];
enqueue(q, src);
visited[ord(src)] = L;
while (!is_empty(q)) {
board u = dequeue(q);
if (is_same(u, dest)) {
/* return the moves to get to u from src. */
std::vector<int> moves;
board c = u;
int o = ord(c);
while (!is_same(c, src)) {
moves.push_back(visited[o]);
c = parent[o];
o = ord(c);
}
std::reverse(moves.begin(), moves.end());
return moves;
}
board a = up(u);
board b = down(u);
board c = left(u);
board d = right(u);
int aord = ord(a);
int bord = ord(b);
int cord = ord(c);
int dord = ord(d);
if (!visited[aord]) {
visited[aord] = U;
parent[aord] = u;
enqueue(q, a);
}
if (!visited[bord]) {
visited[bord] = D;
parent[bord] = u;
enqueue(q, b);
}
if (!visited[cord]) {
visited[cord] = L;
parent[cord] = u;
enqueue(q, c);
}
if (!visited[dord]) {
visited[dord] = R;
parent[dord] = u;
enqueue(q, d);
}
}
assert(0);
}
void print_moves(const std::vector<int>& moves)
{
for (auto m: moves) {
switch (m) {
case L: printf("L "); break;
case R: printf("R "); break;
case U: printf("U "); break;
case D: printf("D "); break;
}
}
printf("\n");
}
int main()
{
board src, dest;
read_board(src);
read_board(dest);
auto moves = solve(src, dest);
print_moves(moves);
return 0;
}