게임판 덮기(BOARDCOVER) 정답 코드
뿌리튼튼 CS/Algorithm2015. 2. 28. 11:19
난이도 ★★★★☆
힌트
재귀로 탐색하면 편리하다. → ① 왼쪽 위 점을 기준으로 잡고 하면 좋다. 그렇게 되면 가능한 경우가 4가지만 나온다. → ② 탐색 중에 덮었으면(cover) 꼭 다시 벗겨줘야(uncover) 한다. |
이하는 코드입니다.
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 | #include <stdio.h> #include <vector> #define WALL 1 #define EMPTY 0 #pragma warning(disable:4996) using namespace std; int H, W; vector<vector<int>> board; int coverCount; void getCount(int y, int x) { // get left-top int i, j; bool found = false; for (i = y; i < H; i++) { if (i == y) { j = x; } else { j = 0; } for (; j < W; j++) { if (board[i][j] == EMPTY) { found = true; break; } } if (found) { break; } } // there is no EMPTY → case found if (!found) { coverCount++; return; } // last row → impossible case if (i > H - 2) { return; } // last column → only 」case could be possible if (j > W - 2) { // 」 if ((board[i + 1][j - 1] == EMPTY) && (board[i + 1][j] == EMPTY)) { // cover board[i][j]++; board[i + 1][j - 1]++; board[i + 1][j]++; getCount(i, j); // uncover board[i][j]--; board[i + 1][j - 1]--; board[i + 1][j]--; } return; } // neither last row nor last column → all cases could be possible else { // ㄱ if ((board[i][j + 1] == EMPTY) && (board[i + 1][j + 1] == EMPTY)) { // cover board[i][j]++; board[i][j + 1]++; board[i + 1][j + 1]++; getCount(i, j); // uncover board[i][j]--; board[i][j + 1]--; board[i + 1][j + 1]--; } // 「 if ((board[i][j + 1] == EMPTY) && (board[i + 1][j] == EMPTY)) { // cover board[i][j]++; board[i][j + 1]++; board[i + 1][j]++; getCount(i, j); // uncover board[i][j]--; board[i][j + 1]--; board[i + 1][j]--; } // 」 if ((board[i + 1][j - 1] == EMPTY) && (board[i + 1][j] == EMPTY)) { // cover board[i][j]++; board[i + 1][j - 1]++; board[i + 1][j]++; getCount(i, j); // uncover board[i][j]--; board[i + 1][j - 1]--; board[i + 1][j]--; } // ㄴ if ((board[i + 1][j] == EMPTY) && (board[i + 1][j + 1] == EMPTY)) { // cover board[i][j]++; board[i + 1][j]++; board[i + 1][j + 1]++; getCount(i, j); // uncover board[i][j]--; board[i + 1][j]--; board[i + 1][j + 1]--; } } } int main() { int C; scanf("%d\n", &C); while (C-- > 0) { scanf("%d %d\n", &H, &W); // get board for (int i = 0; i < H; i++) { vector<int> line; for (int j = 0; j < W; j++) { char c; scanf("%c", &c); if (c == '.') { line.push_back(EMPTY); } else { line.push_back(WALL); } } board.push_back(line); // remove '\n' getchar(); } // solve and print coverCount = 0; getCount(0, 0); printf("%d\n", coverCount); // reset if (C > 0) { board.clear(); } } return 0; } | cs |
'뿌리튼튼 CS > Algorithm' 카테고리의 다른 글
터보모드(TURBOMODE) 정답 코드 (0) | 2015.04.10 |
---|---|
HOTSUMMER 정답 코드 (0) | 2015.04.10 |
콘서트(CONCERT) 정답 코드 (1) | 2015.02.26 |
짝맞추기(MEETING) 정답 코드 (0) | 2015.02.26 |
달팽이(SNAIL) 정답 코드 (0) | 2015.02.24 |