아무코딩

[2018 KAKAO BLIND RECRUITMENT 1차] 프렌즈 4 블록 본문

알고리즘/프로그래머스

[2018 KAKAO BLIND RECRUITMENT 1차] 프렌즈 4 블록

동 코 2020. 5. 6. 23:59

문제풀이

모양이 2x2만 확인하면 되기때문에 (i,j), (i,j+1), (i+1,j), (i+1,j+1) 만 비교해보면된다. 

그리고 자주나오는 문젠데 삭제한뒤 내리는과정

 

이번에 푼 방법이 생각보다 직관적이고 편한 방법인것 같다. 비슷한 유형의 문제일 때 이렇게 접근하는게 편할거 같다.

for(int i=0;i<m;i++){
            for(int j=0;j<n;j++){
                if(checkBlock[i][j]){
                    answer++;
                    for(int k=i;k>0;k--){
                        board[k][j] = board[k-1][j];
                        board[k-1][j] ='0';
                    }
                }
            }
        }

 

소스코드

더보기
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
#include <string>
#include <vector>
#include <iostream>
 
using namespace std;
 
vector<vector<bool>> checkBlock;
bool change_flag = true;
void checkSameBlock(int i, int j, vector<string> board){
    if(board[i][j]=='0')
        return;
    if(board[i][j] == board[i][j+1&& board[i][j] == board[i+1][j] && board[i][j] == board[i+1][j+1]){
        change_flag = true;
        checkBlock[i][j] = checkBlock[i][j+1= checkBlock[i+1][j] = checkBlock[i+1][j+1= true;
    }
}
 
void initCheckBlock(){
    for(int i=0;i<checkBlock.size();i++){
        for(int j=0;j<checkBlock[i].size();j++){
            checkBlock[i][j] = false;
        }
    }
}
 
int solution(int m, int n, vector<string> board) {
    int answer = 0;
    
    
    checkBlock.assign(m, vector<bool>(n,false));
    while(change_flag){
        change_flag = false;
        initCheckBlock();
        for(int i=0;i<m-1;i++){
            for(int j=0;j<n-1;j++){
                checkSameBlock(i, j, board);
            }
        }
//        cout<<"삭제전"<<endl;
//        for(int i=0;i<board.size();i++){
//            cout<<board[i]<<endl;
//        }
        for(int i=0;i<m;i++){
            for(int j=0;j<n;j++){
                if(checkBlock[i][j]){
                    answer++;
                    for(int k=i;k>0;k--){
                        board[k][j] = board[k-1][j];
                        board[k-1][j] ='0';
                    }
                }
            }
        }
//        cout<<"삭제후"<<endl;
//        for(int i=0;i<board.size();i++){
//            cout<<board[i]<<endl;
//        }
    }
    
    return answer;
}
 
 
 
 

 

문제 링크 : https://programmers.co.kr/learn/courses/30/lessons/17679

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

Comments