Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- IFileDialog
- DeferredRendering
- 1563
- Programmers
- Unreal Engine5
- 2294
- C
- Frustum
- GeeksForGeeks
- NRVO
- RVO
- DirectX11
- 팰린드롬 만들기
- 줄 세우기
- 프로그래머스
- const
- UnrealEngine5
- softeer
- RootMotion
- directx
- UE5
- baekjoon
- 오블완
- winapi
- algorithm
- 백준
- 티스토리챌린지
- 언리얼엔진5
- UnrealEngine4
- C++
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 9079번 : 동전 게임 본문
https://www.acmicpc.net/problem/9079
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
|
struct Node
{
bitset<9> bt;
int count;
};
int targetNum = pow(2, 9) - 1;
bool visited[16000] = { false };
void checkAndPush(queue<Node>& q, bitset<9>& bt, int count)
{
int tempNum = bt.to_ullong();
if (visited[tempNum] == true) return;
visited[tempNum] = true;
q.push({ bt,count + 1 });
}
bool isAnswer(bitset<9>& bt)
{
int num = bt.to_ulong();
if (num == 0 || num == targetNum) return true;
return false;
}
int BFS(bitset<9> bt)
{
queue<Node> q;
memset(visited, false, sizeof(visited));
visited[bt.to_ulong()] = true;
int answer = -1;
q.push({ bt,0 });
while (!q.empty())
{
bitset<9> curBT = q.front().bt;
int curCount = q.front().count;
q.pop();
if (isAnswer(curBT))
{
answer = curCount;
break;
}
for (int i = 0; i < 9; i+=3) // 행 뒤집기
{
bitset<9> temp = curBT;
for (int j = i; j < i + 3; ++j)
{
temp[j] = !temp[j];
}
checkAndPush(q, temp, curCount);
}
for (int i = 0; i < 3; ++i) // 열 뒤집기
{
bitset<9> temp = curBT;
for (int j = i; j < 9; j+=3)
{
temp[j] = !temp[j];
}
checkAndPush(q, temp, curCount);
}
bitset<9> temp = curBT;
for (int i = 0; i < 9; i += 4) // 11->5 대각선
{
temp[i] = !temp[i];
}
checkAndPush(q, temp, curCount);
temp = curBT;
for (int i = 2; i < 7; i += 2) // 1->7 대각선
{
temp[i] = !temp[i];
}
checkAndPush(q, temp, curCount);
}
return answer;
}
int main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int t;
cin >> t;
vector<int> answers;
for (int i = 0; i < t; ++i)
{
bitset<9> bt;
for (int r = 0; r < 3; ++r)
{
for (int c = 0; c < 3; ++c)
{
char tc;
cin >> tc;
bt[r * 3 + c] = tc == 'H' ? 0 : 1;
}
}
answers.push_back(BFS(bt));
}
for (auto& temp : answers)
{
cout << temp << endl;
}
}
|
cs |
쉬운 완전탐색문제인데, 표현을 할 때 비트마스킹으로하면 더 편하다.
각 상태는 2가지 (0과 1)로만 표현되기 때문에 이진수처럼 사용이 가능하고, 3*3판의 상태를 10진수의 형태로 표현하는게 가능하다.
해당 10진수로 방문체크를 하면서 행,열,대각선을 전부 뒤집어주는 완전탐색을 진행하면 된다.
비트마스킹 연습문제로 적절한 듯 하다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 13397번 : 구간 나누기 2 (0) | 2023.09.23 |
---|---|
[Algorithm] Baekjoon 1025번 : 제곱수 찾기 (0) | 2023.09.23 |
[Algorithm] Baekjoon 1039번 : 교환 (0) | 2023.09.22 |
[Algorithm] Baekjoon 14888번 : 연산자 끼워넣기 (0) | 2023.09.16 |
[Algorithm] Baekjoon 1525번 : 퍼즐 (0) | 2023.09.16 |