-
Notifications
You must be signed in to change notification settings - Fork 0
/
06_CLOCKSYNC.cpp
69 lines (69 loc) · 2.25 KB
/
06_CLOCKSYNC.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
#include <cstdio>
#include <vector>
#include <algorithm>
using namespace std;
// 시계 맞추기 문제를 해결하는 완전 탐색 알고리즘
const int INF = 9999, SWITCHES = 10, CLOCKS = 16;
// x 연결, i 안연결
const char linked[SWITCHES][CLOCKS + 1] = {
// 0123456789012345
"xxx.............",
"...x...x.x.x....",
"....x.....x...xx",
"x...xxxx........",
"......xxx.x.x...",
"x.x...........xx",
"...x..........xx",
"....xx.x......xx",
".xxxxx..........",
"...xxx...x...x.." };
// 모든 시계가 12시를 가르키고 있는지 확인한다
bool areAligned(const vector<int>& clocks) {
for (int clock = 0; clock < CLOCKS; ++clock)
if (clocks[clock] != 12)
return false;
return true;
}
// swtch번 스위치를 누른다
void push(vector<int>& clocks, int swtch) {
for (int clock = 0; clock < CLOCKS; ++clock)
if (linked[swtch][clock] == 'x') {
clocks[clock] += 3;
if (clocks[clock] == 15)
clocks[clock] = 3;
}
}
// clocks: 현재 시계들의 상태
// swtch: 이번에 누를 스위치의 번호
// 가 주어질 떄, 남은 스위치들을 눌러서 clocks 12 시로 맞출 수 있는 최소 횟수를
// 반환한다
// 만약 불가능하다면 INF 이상의 큰 수를 반환한다
int solve(vector<int>& clocks, int swtch) {
if (swtch == SWITCHES)
return areAligned(clocks) ? 0 : INF;
// 이 스위치를 0번 누르는 경우부터 세 번 누르는 경우까지를 모두 시도한다
int ret = INF;
for (int cnt = 0; cnt < 4; ++cnt) {
ret = min(ret, cnt + solve(clocks, swtch + 1));
push(clocks, swtch);
}
// push(clocks, swtch) 가 네 번 호출되었으니 clocks 는 원래와 같은 상태가 된다
return ret;
}
int main(void) {
int T, ret;
vector<int> clocks;
clocks.resize(CLOCKS);
scanf("%d", &T);
while (T--) {
ret = 0;
for (int i = 0; i < CLOCKS; i++)
scanf("%d", &clocks[i]);
ret = solve(clocks, 0);
if (ret != INF)
printf("%d\n", ret);
else
printf("-1\n", ret);
}
return 0;
}