-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaoj1245.cpp
More file actions
115 lines (110 loc) · 1.99 KB
/
aoj1245.cpp
File metadata and controls
115 lines (110 loc) · 1.99 KB
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
#include <vector>
#include <list>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <stack>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <cctype>
#include <string>
#include <cstring>
using namespace std;
#define REP(i,n) for(int i = 0; i < (int)n; i++)
#define FOR(i,a,b) for(int i = a; i < (int)b; i++)
#define pb push_back
#define mp make_pair
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef pair<int, int> pi;
typedef long long ll;
typedef unsigned long long ull;
const int IINF = 1<<28;
const ll MOD = 1000000007;
const int dx[] = {1, 0, -1, 0}, dy[] = {0, 1, 0, -1};
struct P {
vvi v;
int cnt;
vector<pi> space;
};
bool done(vvi a) {
REP(i, 4) {
REP(j, 7) {
if(a[i][j] != (i+1)*10 + j+1)
return false;
}
}
return true;
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
int n; cin >> n;
REP(_, n) {
set <vvi> s;
queue<P> q;
P p;
p.v.resize(4);
REP(i, 4) {
p.v[i].resize(8);
FOR(j, 1, 8) {
cin >> p.v[i][j];
if(p.v[i][j] % 10 == 1) {
p.v[i][j] = 0;
p.space.pb(pi(i, j));
}
}
}
p.v[0][0] = 11;
p.v[1][0] = 21;
p.v[2][0] = 31;
p.v[3][0] = 41;
p.cnt = 0;
q.push(p);
bool flg = false;
while(q.size()) {
p = q.front(); q.pop();
if(done(p.v)) {
flg = true;
break;
}
REP(i, 4) {
P p2(p);
int num = p2.v[p.space[i].first][p.space[i].second-1]+1;
if(num % 10 == 8)
continue;
REP(j, 4) REP(k, 8) {
if(p2.v[j][k] == num) {
p2.v[p2.space[i].first][p2.space[i].second] = num;
p2.v[j][k] = 0;
p2.space[i] = pi(j, k);
if(!s.count(p2.v)) {
p2.cnt++;
q.push(p2);
s.insert(p2.v);
}
break;
}
}
/*
REP(j, 4) {
REP(k, 8)
cout << p2.v[j][k] << ' ';
cout << endl;
}
*/
}
}
cout << (flg ? p.cnt : -1) << endl;
}
return 0;
}