Recent Posts
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- PytestPluginManager
- 개성국밥
- python
- mp4fpsmod
- preemption #
- terminal
- kotlin
- pytest
- k8s #kubernetes #쿠버네티스
- JanusWebRTCServer
- 오블완
- taint
- 달인막창
- Spring Batch
- 깡돼후
- vfr video
- 코루틴 컨텍스트
- 자원부족
- JanusWebRTC
- table not found
- 코루틴 빌더
- 겨울 부산
- Value too long for column
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- JanusGateway
- PersistenceContext
- VARCHAR (1)
- tolerated
- JanusWebRTCGateway
- 티스토리챌린지
Archives
너와 나의 스토리
[BOJ] 18808 스티커 붙이기 본문
반응형
문제: https://www.acmicpc.net/problem/18808
함수 설명:
- bool check(int x, int y): 현재 위치에 스티커를 붙일 수 있는지 판단
- void plusmap(int x, int y): 현재 위치에 스티커 붙임
- bool paste(): 붙일 수 있는 곳 찾아서 붙이기, 붙였는지 결과 리턴 -> check, plusmap 함수 사용
- void rotation(): 스티커 90도 회전시키기
소스코드:
#include <iostream>
#include <string.h>
#include <algorithm>
#include <vector>
using namespace std;
int preshape[11][11],curshape[11][11],n,m,k,realmap[41][41],res;
int xlen, ylen;
//현재 위치에 스티커를 붙일 수 있는지 판단
bool check(int x, int y) {
for (int i = 0; i < xlen; i++) {
for (int j = 0; j < ylen; j++) {
if (curshape[i][j] + realmap[x + i][y + j] == 2) return false;
}
}
return true;
}
//현재 위치에 스티커 붙임
void plusmap(int x, int y) {
for (int i = 0; i < xlen; i++) {
for (int j = 0; j < ylen; j++) {
if (curshape[i][j] == 1) res++;
realmap[x + i][y + j] += curshape[i][j];
}
}
}
//붙일 수 있는 곳 찾아서 붙이기, 붙였는지 결과 리턴
bool paste() {
for (int i = 0; i <= n - xlen; i++) {
for (int j = 0; j <= m - ylen; j++) {
if (check(i, j)) {
plusmap(i, j);
return true;
}
}
}
return false;
}
// 스티커 90도 회전시키기
void rotation() {
for (int i = 0; i < xlen; i++) {
for (int j = 0; j < ylen; j++) {
preshape[i][j] = curshape[i][j];
}
}
for (int i = 0; i < xlen; i++) {
for (int j = 0; j < ylen; j++) {
curshape[j][xlen - 1 - i] = preshape[i][j];
}
}
}
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m>>k;
for (int s = 0; s < k; s++) {
//int a, b;
cin >> xlen >> ylen;
for (int i = 0; i < xlen; i++) {
for (int j = 0; j < ylen; j++) {
cin >> curshape[i][j];
}
}
if (!paste()){
for (int i = 0; i < 3; i++) {
rotation();
swap(xlen, ylen);
if (paste()) {
break;
}
}
}
}
cout << res << '\n';
return 0;
}
반응형
'Algorithm > 구현' 카테고리의 다른 글
[SW Expert Academy] 1824. 혁진이의 프로그램 검증 (0) | 2020.06.07 |
---|---|
[BOJ] 18809 Gaaaaaaaaaarden (0) | 2020.05.19 |
[Programmers] 2019 카카오 개발자 겨울 인턴십 - 크레인 인형뽑기 게임 (0) | 2020.05.04 |
1770. [SW Test 샘플문제] 블록 부품 맞추기 (4) | 2019.11.07 |
[BOJ] 13567 로봇 (0) | 2019.10.04 |
Comments