Game Develop

[Algorithm] Baekjoon 9079번 : 동전 게임 본문

Algorithm/Baekjoon

[Algorithm] Baekjoon 9079번 : 동전 게임

MaxLevel 2023. 9. 22. 03:17

https://www.acmicpc.net/problem/9079

 

9079번: 동전 게임

입력의 첫 줄에는 테스트 케이스의 개수 T(1 ≤ T ≤ 10)가 주어진다. 각 테스트 케이스는 세 줄로 이루어지며, 한 줄에 세 개의 동전모양이 주어지는데, 각각의 동전 표시 사이에는 하나의 공백이

www.acmicpc.net

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(29- 1;
bool visited[16000= { false };
 
void checkAndPush(queue<Node>& q, bitset<9>& bt, int count)
{
    int tempNum = bt.to_ullong();
    if (visited[tempNum] == truereturn;
    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, falsesizeof(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진수로 방문체크를 하면서 행,열,대각선을 전부 뒤집어주는 완전탐색을 진행하면 된다.

비트마스킹 연습문제로 적절한 듯 하다.