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
- c#
- 자료구조 목차
- 수 만들기
- mysqld.sock
- AI Hub
- 우분투
- 탄막
- 탄막 스킬 범위
- 영상 프레임 추출
- 단어 수학
- 18249
- 마우스 따라다니기
- 원형
- 강의실2
- 걷는건귀찮아
- 알고리즘
- 3344
- 윈도우
- MySQL
- 유니티
- 탄막 이동
- SWEA
- 그리디알고리즘
- 문자열 압축
- 3273
- 2020 KAKAO BLIND RECRUITMENT
- 백준
- 회의실 배정
- 토글 그룹
- 알고리즘 목차
Archives
- Today
- Total
와이유스토리
[시뮬레이션] 프로그래머스 [1차] 프렌즈4블록 C++ 본문
https://programmers.co.kr/learn/courses/30/lessons/17679
#include <string>
#include <vector>
#include <string.h>
using namespace std;
bool change[30][30];
int make(int i, int j) {
if (!change[i][j]) {
change[i][j] = true;
return 1;
}
return 0;
}
int check(int m, int n, vector<string> board) {
int cnt = 0;
memset(change, false, sizeof(change));
for(int i=m-1; i>0; i--) {
for(int j=0; j<n-1; j++) {
if (board[i][j] == ' ') continue;
if ((board[i][j] == board[i][j+1]) && (board[i-1][j] == board[i-1][j+1]) && (board[i][j] == board[i-1][j])) {
cnt += make(i, j);
cnt += make(i-1, j);
cnt += make(i, j+1);
cnt += make(i-1, j+1);
}
}
}
return cnt;
}
int solution(int m, int n, vector<string> board) {
int answer = 0;
while(true) {
int cnt = check(m, n, board);
if (!cnt) break;
answer += cnt;
for(int i=0; i<m; i++) {
for(int j=0; j<n; j++) {
if (change[i][j]) {
if (i==0) board[i][j] = ' ';
for(int k=i; k>0; k--) {
board[k][j] = board[k-1][j];
board[k-1][j] = ' ';
}
}
}
}
}
return answer;
}
'코딩테스트 > 시뮬레이션' 카테고리의 다른 글
[시뮬레이션] 프로그래머스 퍼즐 조각 채우기 C++ (0) | 2023.03.28 |
---|---|
[시뮬레이션(회전)] (CHECK) 프로그래머스 자물쇠와 열쇠 C++ (0) | 2023.02.19 |
[시뮬레이션] 백준 20056 마법사 상어와 파이어볼 C++ (0) | 2022.02.08 |
[시뮬레이션] 백준 19237 어른 상어 C++ (0) | 2022.02.07 |
[시뮬레이션] 백준 3954 Brainf**k 인터프리터 C++ (0) | 2022.02.05 |
Comments