Notice
Recent Posts
Recent Comments
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
- 3273
- 알고리즘 목차
- 자료구조 목차
- 우분투
- 18249
- 백준
- 탄막
- MySQL
- 2020 KAKAO BLIND RECRUITMENT
- 3344
- 단어 수학
- c#
- mysqld.sock
- SWEA
- 알고리즘
- AI Hub
- 윈도우
- 영상 프레임 추출
- 문자열 압축
- 걷는건귀찮아
- 토글 그룹
- 마우스 따라다니기
- 회의실 배정
- 유니티
- 강의실2
- 탄막 이동
- 원형
- 탄막 스킬 범위
- 수 만들기
- 그리디알고리즘
Archives
- Today
- Total
와이유스토리
[시뮬레이션(테트리스)] (CHECK) 백준 20061 모노미노도미노2 C++ 본문
https://www.acmicpc.net/problem/20061
#include <iostream>
using namespace std;
bool blue[4][6]; // x 기준, y 사라짐
bool green[6][4]; // y 기준, x 사라짐
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
int n;
cin >> n;
int answer = 0;
int t, x, y;
for(int i=0; i<n; i++) {
cin >> t >> x >> y;
// 블록 그대로 이동(비어있는 칸 주의)
for(int j=0; j<6; j++) {
if (t == 1) {
if (j == 5) blue[x][j] = true;
else if (blue[x][j+1]) blue[x][j] = true;
}
else if (t == 2) {
if (j == 4) {
blue[x][j] = true;
blue[x][j+1] = true;
}
else if (blue[x][j+2]) {
blue[x][j] = true;
blue[x][j+1] = true;
}
}
else if (t == 3) {
if (j == 5) {
blue[x][j] = true;
blue[x+1][j] = true;
}
else if (blue[x][j+1] || blue[x+1][j+1]) {
blue[x][j] = true;
blue[x+1][j] = true;
}
}
if (blue[x][j]) break;
}
for(int j=0; j<6; j++) {
if (t == 1) {
if (j == 5) green[j][y] = true;
else if (green[j+1][y]) green[j][y] = true;
}
else if (t == 2) {
if (j == 5) {
green[j][y] = true;
green[j][y+1] = true;
}
else if (green[j+1][y] || green[j+1][y+1]) {
green[j][y] = true;
green[j][y+1] = true;
}
}
else if (t == 3) {
if (j == 4) {
green[j][y] = true;
green[j+1][y] = true;
}
else if (green[j+2][y]) {
green[j][y] = true;
green[j+1][y] = true;
}
}
if (green[j][y]) break;
}
// 블록 삭제 및 이동(삭제 후 바로 이동)
for(int j=0; j<6; j++) {
if (blue[0][j] && blue[1][j] && blue[2][j] && blue[3][j]) {
for(int k=0; k<4; k++) {
for(int p=j; p>0; p--) {
blue[k][p] = blue[k][p-1];
}
}
answer++;
}
if (green[j][0] && green[j][1] && green[j][2] && green[j][3]) {
for(int k=0; k<4; k++) {
for(int p=j; p>0; p--) {
green[p][k] = green[p-1][k];
}
}
answer++;
}
}
// 특별한 칸 확인(바로 삭제 및 이동X)
int bcnt = 0;
int gcnt = 0;
for(int j=0; j<2; j++) {
if (blue[0][j] || blue[1][j] || blue[2][j] || blue[3][j]) bcnt++;
if (green[j][0] || green[j][1] || green[j][2] || green[j][3]) gcnt++;
}
// 블록 행 이동
for(int j=0; j<4; j++) {
if (bcnt == 0) break; // 초기화 방지
for(int k=5; k>=bcnt; k--) {
blue[j][k] = blue[j][k-bcnt];
blue[j][k-bcnt] = false; // 초기화
}
}
for(int j=0; j<4; j++) {
if (gcnt == 0) break;
for(int k=5; k>=gcnt; k--) {
green[k][j] = green[k-gcnt][j];
green[k-gcnt][j] = false;
}
}
}
cout << answer << "\n";
int cnt = 0;
for(int i=0; i<4; i++) {
for(int j=0; j<6; j++) {
if (blue[i][j]) cnt++;
if (green[j][i]) cnt++;
}
}
cout << cnt;
return 0;
}
'코딩테스트 > 시뮬레이션' 카테고리의 다른 글
[시뮬레이션] 백준 14890 경사로 C++ (0) | 2023.09.04 |
---|---|
[시뮬레이션(회전)] (CHECK) 백준 20057 마법사 상어와 토네이도 C++ (0) | 2023.03.31 |
[시뮬레이션] 프로그래머스 퍼즐 조각 채우기 C++ (0) | 2023.03.28 |
[시뮬레이션(회전)] (CHECK) 프로그래머스 자물쇠와 열쇠 C++ (0) | 2023.02.19 |
[시뮬레이션] 프로그래머스 [1차] 프렌즈4블록 C++ (0) | 2022.03.03 |
Comments