구현하기 꽤나 복잡한 문제.
처음엔 5개의 높이마다 왼,오 두번씩 던지는 줄 알아서 꽤나 헤맸다. (...)
알고리즘을 행동별로 나누어 계층적으로 짜면 수월하다.
1. 해당되는 높이로 막대기를 던져 x가 맞으면 부순다.
2. 맵을 확인하여 클러스터를 생성, 그 클러스터가 땅에 붙어있으면 pass, 땅이나 다른 클러스터와 떨어져 있으면 3번.
3. 분리되어 있는 클러스터를 한칸 떨어뜨린다.
4. 한칸 떨어진 클러스터가 땅에 닿았는지 혹은 다른 클러스터에 닿았는지 확인한 후, 닿지 않았다면 3번. 닿았으면 다음 막대기를 던진다.
3번을 수행할때, 맵만 바꾸어주는 것이 아니라, 클러스터를 만들때 true로 체크했던 bool 배열(check)도 바꾸어 주어야한다.
또한 한개의 포문안에서 한칸을 지우고 그 밑에 x를 입력하는 것이 아닌,
한 칸을 지우는 포문 한개와 밑에 x를 입력하는 포문 한개, 즉 2개를 사용하는 것이 정확하다.
4번에서 자신의 클러스터와 다른 클러스터를 구별하기 위해 부울 배열(own)을 사용했다.
코드
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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 | #include<stdio.h> #include<iostream> #include<vector> #include<queue> #include<memory.h> using namespace std; bool check[101][101]; char map[101][101]; int thigh[101]; int n, m; int thnum; int dx[] = { 1,-1,0,0 }; int dy[] = { 0,0,1,-1 }; vector<pair<int, int>>cluster; void clust(); void down() { // 분리된 클러스터를 떨어뜨리는 함수 bool ok = false; bool own[101][101]; memset(own, false, sizeof(own)); for (int i = 0; i < cluster.size(); i++) { int x = cluster[i].first; int y = cluster[i].second; if (x == n - 1) { ok = true; break; } } if (ok == false) { for (int i = 0; i < cluster.size(); i++) { int x = cluster[i].first; int y = cluster[i].second; map[x][y] = '.'; check[x][y] = false; } for (int i = 0; i < cluster.size(); i++) { int x = cluster[i].first; int y = cluster[i].second; map[x + 1][y] = 'x'; check[x + 1][y] = true; own[x+1][y] = true; cluster[i].first++; } bool on = false; for (int i = 0; i < cluster.size(); i++) { int x = cluster[i].first; int y = cluster[i].second; if (x == n - 1) { on = true; } if (map[x + 1][y] == 'x' && own[x+1][y] == false) { on = true; } } if (on == false) { down(); } else { return; } } return; } void make(int x, int y) { // 클러스터를 만드는 함수 cluster.push_back({ x,y }); for (int i = 0; i < 4; i++) { int nx = x + dx[i]; int ny = y + dy[i]; if (nx >= 0 && ny >= 0 && nx < n && ny < m) { if (map[nx][ny] == 'x' && check[nx][ny] == false) { check[nx][ny] = true; make(nx, ny); } } } } void clust() { // 클러스터를 만드는 함수와 떨어뜨리는 함수 memset(check, false, sizeof(check)); for (int i = n - 1; i >= 0; i--) { for (int j = 0; j < m; j++) { if (map[i][j] == 'x' && check[i][j]==false) { cluster.clear(); check[i][j] = true; make(i, j); down(); } } } return; } void go(int high, int dir) { //막대기 던져서 부수는 함수 high = n - high; if (dir == 1) { //왼 -> 오 for (int i = 0; i < m; i++) { if (map[high][i] == 'x') { map[high][i] = '.'; break; } } } if (dir == -1) { // 오->왼 for (int i = m-1; i >= 0; i--) { if (map[high][i] == 'x') { map[high][i] = '.'; break; } } } return; } int main() { //freopen("Text.txt", "r", stdin); cin >> n >> m; for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { cin >> map[i][j]; } } cin >> thnum; for(int i = 0; i < thnum; i++) { cin >> thigh[i]; } for (int i = 0; i < thnum; i++) { if (i % 2 == 0) { go(thigh[i], 1); } else { go(thigh[i], -1); } clust(); } for (int j = 0; j < n; j++) { for (int k = 0; k < m; k++) { cout << map[j][k]; } cout << endl; } cout << endl; } | cs |
'BOJ' 카테고리의 다른 글
백준 15686 / 치킨 배달 (0) | 2019.02.22 |
---|---|
백준 15685 / 드래곤 커브 (0) | 2019.02.21 |
백준 2422 / 한윤정이 이탈리아에 가서 아이스크림을 사먹는데 (0) | 2019.02.20 |
백준 13458 / 시험 감독 (0) | 2019.02.20 |
백준 14890 / 경사로 (0) | 2019.02.19 |