-
Notifications
You must be signed in to change notification settings - Fork 1
/
VJ搜索T.cpp
96 lines (88 loc) · 2.14 KB
/
VJ搜索T.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
这个题我刚开始想的时候感觉完全没有思路,因为我不知道从哪里下手,如果从搜索开始想的话我只能想到广搜,
结果看了下题解说的是吧加一减一和交换着三种情况都用队列存起来然后一次一次去确认有没有目标的答案,果然
广搜的话还是得用队列来存储。
#include <iostream>
#include <algorithm>
#include <cstring>
#include <queue>
#define INF 0x3f3f3f3f
using namespace std;
struct fin {
int target[5];
int step;
};
char a[11], b[11];
int pass[5];
int vis[11][11][11][11];
int solve() {
bool flag;
queue<fin> q;
fin x, y;
node tem, nex;
for (int i = 0; i < 4; i++) {
x.target[i] = a[i] - '0';
pass[i] = b[i] - '0';
}
x.step = 0;
q.push(x);
memset(vis, 0, sizeof(vis));
while (!q.empty()) {
x = q.front();
q.pop();
flag = true;
for (int i = 0; i < 4; i++) {
if (x.target[i] != pass[i]) {
flag = false;
break;
}
}
if (flag) {
return tem.step;
}
for (int j = 0; j < 4; j++) {
y = x;
if (x.target[j] == 9) {
y.target[j] = 1;
} else {
y.target[j] = x.target[j] + 1;
}
if (!vis[y.target[0]][y.target[1]][y.target[2]][y.target[3]]) {
vis[y.target[0]][y.target[1]][y.target[2]][y.target[3]] = 1;
y.step = x.step + 1;
q.push(y);
}
}
for (int j = 0; j < 4; j++) {
y = x;
if (x.target[j] == 1) {
y.target[j] = 9;
} else {
y.target[j] = x.target[j] - 1;
}
if (!vis[y.target[0]][y.target[1]][y.target[2]][y.target[3]]) {
vis[y.target[0]][y.target[1]][y.target[2]][y.target[3]] = 1;
y.step = x.step + 1;
q.push(y);
}
}
for (int k = 0; k < 3; k++) {
y = x;
y.target[k] = x.target[k + 1];
y.target[k + 1] = x.target[k];
if (!vis[y.target[0]][y.target[1]][y.target[2]][y.target[3]]) {
vis[y.target[0]][y.target[1]][y.target[2]][y.target[3]] = 1;
y.step = x.step + 1;
q.push(y);
}
}
}
}
int main(int argc, char *argv[]) {
int n;
cin >> n;
while (n--) {
cin >> a >> b;
cout << solve() << endl;
}
return 0;
}