배운 것
1. 스티커를 특정 영역에 붙일 수 있는지 확인하고 붙이기 (함수로 빼기)
2. 스티커를 회전하기 (함수로 빼기)
복잡한 절차들은 함수로 빼서 처리할 수 있다.
정답 코드
// Authored by : BaaaaaaaaaaarkingDog
// Co-authored by : -
// http://boj.kr/6a7f35306b1446b1b01b057263879295
#include <bits/stdc++.h>
using namespace std;
int n, m, k;
int note[42][42];
int r, c;
int paper[12][12];
// paper를 90도 회전하는 함수
void rotate(){
int tmp[12][12];
for(int i = 0; i < r; i++)
for(int j = 0; j < c; j++)
tmp[i][j] = paper[i][j];
for(int i = 0; i < c; i++)
for(int j = 0; j < r; j++)
paper[i][j] = tmp[r-1-j][i];
swap(r, c);
}
// note의 (x,y)에 모눈종이의 (0,0)이 올라가게 스티커를 붙일 수 있는지 판단하는 함수. 가능할 경우 note를 갱신한 후 true를 반환.
bool pastable(int x, int y){
for(int i = 0; i < r; i++){
for(int j = 0; j < c; j++){
if(note[x+i][y+j] == 1 && paper[i][j] == 1)
return false;
}
}
for(int i = 0; i < r; i++){
for(int j = 0; j < c; j++){
if(paper[i][j] == 1)
note[x+i][y+j] = 1;
}
}
return true;
}
int main(void) {
ios::sync_with_stdio(0);
cin.tie(0);
cin >> n >> m >> k;
while(k--){
cin >> r >> c;
for(int i = 0; i < r; i++)
for(int j = 0; j < c; j++)
cin >> paper[i][j];
for(int rot = 0; rot < 4; rot++){
bool is_paste = false; // 해당 스티커를 붙였는가?
for(int x = 0; x <= n-r; x++){
if(is_paste) break;
for(int y = 0; y <= m-c; y++){
if(pastable(x, y)){
is_paste = true;
break;
}
}
}
if(is_paste) break;
rotate();
}
}
int cnt = 0;
for(int i = 0; i < n; i++)
for(int j = 0; j < m; j++)
cnt += note[i][j];
cout << cnt << '\n';
}
'Algorithm > C++' 카테고리의 다른 글
[백준 11650] 좌표 정렬하기 (0) | 2022.09.23 |
---|---|
[백준 15688] 수 정렬하기 5 (0) | 2022.09.21 |
[백준 15655] N과 M (6) (0) | 2022.09.19 |
[백준 15656] N과 M (7) (0) | 2022.09.19 |
[백준 15654] N과 M (5) (0) | 2022.09.16 |
댓글