본문 바로가기

BOJ

백준 11559 / Puyo Puyo



재밌는 문제.


BFS를 이용한 지우기와 맵 갱신이 중요한 문제다.



이런 문제는 일일이 맵을 프린트해보고 결과값을 확인 후 수정하는 것이 중요하다.




내가 절었던 부분은.


한번에 세가지 색이 모두 터질때 카운트가 3이 추가되는 것이 아니라 그냥 1로 친다는 점이다.



코드


printmap() : 맵 출력

alldown(); 중간에 빈칸이 생겼을 시 끝까지 떨어질 떄까지 재귀로 맵을 갱신한다.

mapcheck(): 폭발이 발생하는지 안하는지 체크, 더 이상 폭발이 발생할 수 없다면 종료.

erase(): 폭발 구현.



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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#include<stdio.h>
#include<iostream>
#include<vector>
#include<queue>
#include<memory.h>
 
using namespace std;
 
char map[12][6];
 
int dx[] = { 1,-1,0,0 };
int dy[] = { 0,0,1,-1 };
 
bool check[12][6];
bool erasehappen = false;
 
int cnt = 0;
 
bool ending;
 
 
void printmap() {
 
    for (int i = 0; i < 12; i++) {
        for (int j = 0; j < 6; j++) {
            cout << map[i][j];
        }
        cout << endl;
    }
    cout << endl;
}
 
void alldown() {
 
    bool movehappen = false;
 
    for (int i = 11; i >= 0; i--) {
        for (int j = 0; j < 6; j++) {
 
            if (map[i][j] == '.' && i-1>=0) {
                if (map[i - 1][j] != '.') {
                    movehappen = true;
                    map[i][j] = map[i - 1][j];
                    map[i - 1][j] = '.';
                }
 
            }
 
        }
    }
 
    if (movehappen == true) {
        alldown();
    }
    else return;
    
}
void erase(int line, int i) {
 
    char c = map[line][i];
 
    memset(check, falsesizeof(check));
 
 
    queue<pair<intint>>q;
 
    vector<pair<intint>>eraser;
 
    q.push(make_pair(line, i));
    eraser.push_back(make_pair(line, i));
    check[line][i] = true;
 
    while (!q.empty()) {
        int x = q.front().first;
        int y = q.front().second;
        q.pop();
 
        
        for (int i = 0; i < 4; i++) {
            int nx = x + dx[i];
            int ny = y + dy[i];
 
            if (nx >= 0 && ny >= 0 && nx < 12 && ny < 6) {
                if (map[nx][ny] == c && check[nx][ny] == false) {
                    check[nx][ny] = true;
                    eraser.push_back(make_pair(nx, ny));
                    q.push(make_pair(nx, ny));
                }
            }
        }
    }
 
 
    if (eraser.size() >= 4) {
    
        for (int i = 0; i < eraser.size(); i++) {
            int x = eraser[i].first;
            int y = eraser[i].second;
 
            map[x][y] = '.';
        }
        erasehappen = true;
    }
 
    return;
 
}
void mapcheck() { // R, G, B, P Y,
 
    erasehappen = false;
 
    for (int line = 11; line >= 0; line--) {
        for (int i = 0; i < 6; i++) {
            if (map[line][i]!='.') {
                erase(line, i);
            }
        }
    }
 
    alldown();
    if (erasehappen == true) {
        cnt++;
        mapcheck();
    }
 
    if (erasehappen == false) {
        ending = true;
    }
 
}
 
int main() {
    //freopen("Text.txt", "r", stdin);
 
    for (int i = 0; i < 12; i++) {
        for (int j = 0; j < 6; j++) {
            cin >> map[i][j];
        }
    }
 
    mapcheck();
    
    if (ending == true) {
        cout << cnt << endl;
    }
}
 
 
 
cs


'BOJ' 카테고리의 다른 글

백준 1753 / 최단경로  (0) 2019.01.13
백준 9205 / 맥주 마시면서 걸어가기  (0) 2019.01.11
백준 1726 / 로봇  (0) 2019.01.10
백준 9372 / 상근이의 여행  (0) 2019.01.09
백준 1939 / 중량제한  (0) 2019.01.09