상하좌우 를 5번 조합하여 구할 수 있는 최댓값을 구하면 된다.
배열 상하좌우 미는거 구현이 귀찮지, 그냥 재귀 문제이다.
미는거 깔끔하게 다시 만들어봐야지ㅜ,ㅠ더럽
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 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 | #include <stdio.h> #include <string.h> void up(int arr[22][22]); void down(int arr[22][22]); void right(int arr[22][22]); void left(int arr[22][22]); int map[22][22], MAX; int visit[5]; int n; void DFS(int cur) { if (cur == 5) { int max = -1; int copy[22][22]; for (int i = 0; i < 22; i++) for (int j = 0; j < 22; j++) copy[i][j] = map[i][j]; for (int i = 0; i < 5; i++) { switch (visit[i]) { case 1: up(copy); break; case 2: down(copy); break; case 3: right(copy); break; case 4: left(copy); break; } } for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { if (copy[i][j] > max) max = copy[i][j]; } } if (max > MAX) MAX = max; return; } for (int i = 1; i <= 4; i++) { visit[cur] = i; DFS(cur + 1); visit[cur] = 0; } return; } int main() { scanf("%d",&n); MAX = -1; for (int i = 0; i < n; i++) for (int j = 0; j < n; j++) scanf("%d", &map[i][j]); DFS(0); printf("%d\n",MAX); return 0; } void up(int arr[22][22]) { for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { if (arr[j][i] == 0) { int pos = 0; while (1) { if (j + pos >= n) break; else if (arr[j + pos][i] != 0) { arr[j][i] = arr[j + pos][i]; arr[j + pos][i] = 0; break; } pos++; } } } //합치기 for (int j = 0; j < n - 1; j++) { if (arr[j][i] == arr[j + 1][i]) { arr[j][i] += arr[j + 1][i]; arr[j + 1][i] = 0; j++; } } //올리기 for (int j = 0; j < n; j++) { if (arr[j][i] == 0) { int pos = 0; while (1) { if (j + pos >= n) break; else if (arr[j + pos][i] != 0) { arr[j][i] = arr[j + pos][i]; arr[j + pos][i] = 0; break; } pos++; } } } } } void down(int arr[22][22]) { for (int i = 0; i < n; i++) { for (int j = n - 1; j >= 0; j--) { if (arr[j][i] == 0) { int pos = 0; while (1) { if (j - pos < 0) break; else if (arr[j - pos][i] != 0) { arr[j][i] = arr[j - pos][i]; arr[j - pos][i] = 0; break; } pos++; } } } //합치기 for (int j = n - 1; j > 0; j--) { if (arr[j][i] == arr[j - 1][i]) { arr[j][i] += arr[j - 1][i]; arr[j - 1][i] = 0; j--; } } //올리기 for (int j = n - 1; j >= 0; j--) { if (arr[j][i] == 0) { int pos = 0; while (1) { if (j - pos < 0) break; else if (arr[j - pos][i] != 0) { arr[j][i] = arr[j - pos][i]; arr[j - pos][i] = 0; break; } pos++; } } } } } void right(int arr[22][22]) { for (int i = 0; i < n; i++) { for (int j = n - 1; j >= 0; j--) { if (arr[i][j] == 0) { int pos = 0; while (1) { if (j - pos < 0) break; else if (arr[i][j - pos] != 0) { arr[i][j] = arr[i][j - pos]; arr[i][j - pos] = 0; break; } pos++; } } } //합치기 for (int j = n - 1; j > 0; j--) { if (arr[i][j] == arr[i][j - 1]) { arr[i][j] += arr[i][j - 1]; arr[i][j - 1] = 0; j--; } } /* printf("\n 합치기 \n"); for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { printf("%d ", arr[i][j]); } printf("\n"); } */ //올리기 for (int j = n - 1; j >= 0; j--) { if (arr[i][j] == 0) { int pos = 0; while (1) { if (j - pos < 0) break; else if (arr[i][j - pos] != 0) { arr[i][j] = arr[i][j - pos]; arr[i][j - pos] = 0; break; } pos++; } } } } } void left(int arr[22][22]) { for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { if (arr[i][j] == 0) { int pos = 0; while (1) { if (j + pos >= n) break; else if (arr[i][j + pos] != 0) { arr[i][j] = arr[i][j + pos]; arr[i][j + pos] = 0; break; } pos++; } } } //합치기 for (int j = 0; j < n - 1; j++) { if (arr[i][j] == arr[i][j + 1]) { arr[i][j] += arr[i][j + 1]; arr[i][j + 1] = 0; j++; } } //올리기 for (int j = 0; j < n; j++) { if (arr[i][j] == 0) { int pos = 0; while (1) { if (j + pos >= n) break; else if (arr[i][j + pos] != 0) { arr[i][j] = arr[i][j + pos]; arr[i][j + pos] = 0; break; } pos++; } } } } } | cs |
'SW 업무 관련 > 백준' 카테고리의 다른 글
[C언어] 13458. 시험감독 (0) | 2018.10.17 |
---|---|
[C언어] 15684. 사다리 조작 (474) | 2018.10.16 |
[C언어] 15685. 드래곤 커브 (423) | 2018.10.14 |
[C언어] 14500 테트로미노 (404) | 2018.10.14 |
[C언어] 14501. 퇴사 (0) | 2018.10.09 |