일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 부주상골증후군
- 독일어
- SQLD
- 카카오인턴
- sql
- 롯데정보통신
- 부주상골
- 독일어독학
- 프로그래머스
- 카카오인턴십
- 독학
- 코딩테스트
- 코테
- 리눅스
- 스택
- 부주상골수술후기
- 세브란스
- c++
- IOS
- 분할정복
- 카카오코테
- 부주상골수술
- ChatGPT
- BFS
- istringstream
- DFS
- SWIFT
- 백준
- 구현
- dp
Archives
- Today
- Total
슈뢰딩거의 고등어
[프로그래머스] 쿼드압축 후 개수 세기 본문
https://programmers.co.kr/learn/courses/30/lessons/68936
[해결방법]
분할정복
분할한 맵의 크기가 1일 때까지 분할한다.
분할한 맵의 인자들이 모두 같은 수인지 확인하는 과정이 필요하다.
#include <string>
#include <iostream>
#include <vector>
using namespace std;
vector <vector <int>> map;
int one_cnt, zero_cnt;
void divide(int cy, int cx, int size) {
if(size == 1) {
if(map[cy][cx] == 0)
zero_cnt++;
else if(map[cy][cx] == 1)
one_cnt++;
return;
}
// compare
bool same = true;
int no = map[cy][cx];
for(int i=0; i<size; i++) {
for(int j=0; j<size; j++) {
int ny = cy + i;
int nx = cx + j;
if(no != map[ny][nx]) {
same = false;
break;
}
}
}
if(same) {
if(no == 1)
one_cnt++;
else if(no == 0)
zero_cnt++;
return;
}
divide(cy, cx, size/2);
divide(cy, cx+(size/2), size/2);
divide(cy+(size/2), cx, size/2);
divide(cy+(size/2), cx+(size/2), size/2);
}
vector<int> solution(vector<vector<int>> arr) {
vector<int> answer;
map = arr;
divide(0, 0, map.size());
answer.push_back(zero_cnt);
answer.push_back(one_cnt);
return answer;
}
'알고리즘' 카테고리의 다른 글
[백준] 1018 체스판 다시 칠하기 (0) | 2022.03.19 |
---|---|
[boj] 2751 수 정렬하기 2 (0) | 2022.03.19 |
[프로그래머스] 이진 변환 반복하기 (0) | 2022.03.17 |
[프로그래머스] 짝지어 제거하기 (0) | 2022.03.16 |
[프로그래머스] 카카오 인턴 - 수식 최대화 (0) | 2022.03.16 |
Comments