Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 프로그래머스
- BFS
- swea
- 모의SW역량테스트
- 레벨3
- 문자열
- Set
- Sort
- 시뮬레이션
- 백준
- C++
- Map
- KAKAO
- 백트래킹
- 완전탐색
- 삼성SW역량테스트
- priority_queue
- find
- 삼성SW테스트
- 레벨2
- dfs
- dp
- 코딩스킬
- STL
- 코딩테스트
- 브루트포스
- 2018
- substr
- 이런게4문제
- 삼성
Archives
- Today
- Total
-
[KAKAO_2018] 프렌즈 4블록 본문
https://programmers.co.kr/learn/courses/30/lessons/17679
2x2 크기의 동일 블록에 대한 블록게임을 구현하는 문제였다.
먼저 루프를 돌며 같은 모양을 갖는 블록들모임이 존재하는지 확인하고, 해당되는 갯수를 구해 정답에 더해주면 된다.
만약 그 갯수가 0이라면 지울 블록이 없다는 의미이므로 더이상 진행하지 않고 빠져나와 정답을 출력하면 된다.
핵심은 70번째 줄로 블록을 내려준 뒤에 다음 행 (바로 위 행) 부터 조사해주는 것이다. 저 break;를 안하면 통과하지 않는 테스트케이스 4건이 생긴다. 왜냐하면 기껏 갱신해놓은 r에 루프를 더 돌아 ' '가 아닌 것이 나오면 덮어써버리기 때문이다.
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
#include <string>
#include <vector>
using namespace std;
vector<vector<bool> > check;
int height, width;
typedef struct dir{
int dr, dc;
}dir;
dir d[4] = {{0, 0}, {0, 1}, {1, 0}, {1, 1}};
void falsing(){
for(int r=0; r<height; r++){
for(int c=0; c<width; c++){
check[r][c] = false;
}
}
}
int solution(int R, int C, vector<string> board) {
int answer = 0;
height = R;
width = C;
while(1){
int curErase = 0;
// 1. erase
for(int r=0; r<R-1; r++){
for(int c=0; c<C-1; c++){
char curCharacter = board[r][c];
if(curCharacter == ' ') continue;
bool allSame = true;
for(int i=0; i<4; i++){
int nr = r + d[i].dr;
int nc = c + d[i].dc;
if(board[nr][nc] != curCharacter){
allSame = false;
break;
}
}
if(allSame){ // 4개 다 같으면
for(int i=0; i<4; i++){
int nr = r + d[i].dr;
int nc = c + d[i].dc;
if(!check[nr][nc]){
check[nr][nc] = true;
curErase++;
}
}
}
}
}
answer += curErase;
if(curErase == 0) break; // 안지워진다면 끝. // 지워주기.
for(int r=0; r<R; r++){
for(int c=0; c<C; c++){
if(check[r][c]){
board[r][c] = ' ';
}
}
}
// 2. go down
for(int c=0; c<C; c++){
for(int r=R-1; r>=0; r--){
if(board[r][c] == ' '){
for(int n_r = r-1; n_r >= 0 ; n_r--){
if(board[n_r][c] != ' '){
board[r][c] = board[n_r][c];
board[n_r][c] = ' ';
break;
}
}
}
}
}
falsing();
}
return answer;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs |
'1-3. 카카오 SW테스트' 카테고리의 다른 글
[KAKAO_2018] 캐시 (1차) (0) | 2020.02.18 |
---|---|
[2019_KAKAO] 매칭 점수 (프로그래머스 레벨 3) (0) | 2020.02.12 |
[2017카카오코드본선] 단체사진 찍기 (0) | 2020.02.06 |
[2020_KAKAO] 괄호 변환 (0) | 2020.02.06 |
Comments