[문제]
https://www.acmicpc.net/problem/12100
[풀이]
시뮬레이션 + 90,180,270,360도 회전 알고리즘
[코드]
#include <bits/stdc++.h>
using namespace std;
int board1[21][21];
int board2[21][21];
int n;
void rotate(){
int tmp[21][21];
for(int i=0; i<n; i++)
for(int j=0; j<n; j++)
tmp[i][j] = board2[i][j];
for(int i=0; i<n; i++)
for(int j=0; j<n; j++)
board2[i][j] = tmp[n-1-j][i];
}
void tilt(int dir){
while(dir--) rotate();
for(int i=0; i<n; i++){
int tilted[21] = {};
int idx = 0;
for(int j=0; j<n; j++){
if(board2[i][j] == 0) continue;
if(tilted[idx] == 0)
tilted[idx] = board2[i][j];
else if(tilted[idx] == board2[i][j])
tilted[idx++] *=2;
else
tilted[++idx] = board2[i][j];
}
for(int j=0; j<n; j++) board2[i][j] = tilted[j];
}
}
int main(void){
ios::sync_with_stdio(0);
cin.tie(0);
cin >> n;
for(int i=0; i<n; i++)
for(int j=0; j<n; j++)
cin >> board1[i][j];
int mx = 0;
for(int tmp =0; tmp<1024; tmp++){
for(int i=0; i<n; i++)
for(int j=0; j<n; j++)
board2[i][j] = board1[i][j];
int brute =tmp;
for(int i=0; i<5; i++){
int dir = brute % 4;
brute /=4;
tilt(dir);
}
for(int i=0; i<n; i++)
{
for(int j=0; j<n; j++)
mx = max(mx, board2[i][j]);
}
}
cout << mx;
}
'✏️ Algorithm > 알고리즘 풀이' 카테고리의 다른 글
백준 2751번 - 수 정렬하기 2 C++ (0) | 2022.02.06 |
---|---|
백준 15686 - 치킨 배달 / C++ (0) | 2022.01.23 |
백준 18808 - 스티커 붙이기 / C++ (0) | 2022.01.23 |
백준 15683번 감시 - C++ (0) | 2022.01.22 |
백준 15652번 - N과 M (4) / C++ (0) | 2022.01.15 |