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
- 브루트포스
- Map
- 백트래킹
- 레벨2
- 모의SW역량테스트
- 프로그래머스
- priority_queue
- 문자열
- find
- 삼성SW테스트
- STL
- 시뮬레이션
- 코딩스킬
- swea
- 2018
- Set
- KAKAO
- Sort
- 완전탐색
- 이런게4문제
- 삼성SW역량테스트
- 레벨3
- BFS
- 코딩테스트
- substr
- dp
- 삼성
- dfs
- C++
- 백준
Archives
- Today
- Total
-
[프로그래머스] 레벨 2 - 카카오프렌즈 컬러링북 (2017 카카오코드 예선) 본문
https://programmers.co.kr/learn/courses/30/lessons/1829
전형적인 BFS 탐색 문제다.
영역별로 영역의 크기를 구해주고 벡터에 저장한 뒤 마지막에 내림차순 정렬로 [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
|
#include <vector>
#include <algorithm>
#include <queue>
#include <functional>
using namespace std;
typedef struct dir{
int dr, dc;
}dir;
dir direction[4] = {{0, 1}, {0, -1}, {1, 0}, {-1, 0}};
int cnt = 0;
bool check[100][100];
void falsing(){
for(int i=0; i<100; i++)
for(int j=0; j<100; j++)
check[i][j] = false;
}
vector<int> solution(int m, int n, vector<vector<int>> picture) {
int number_of_area = 0;
int max_size_of_one_area = 0;
vector<int> answer(2);
answer[0] = number_of_area;
answer[1] = max_size_of_one_area;
falsing();
vector<int> areas;
for(int r=0; r<m; r++){
for(int c=0; c<n; c++){
if(picture[r][c] != 0 && !check[r][c]){
int curcolor = picture[r][c];
cnt++;
check[r][c] = true;
queue<pair<int, int> > q;
q.push(make_pair(r, c));
while(!q.empty()){
int fr = q.front().first;
int fc = q.front().second;
q.pop();
for(int i=0; i<4; i++){
int nr = fr + direction[i].dr;
int nc = fc + direction[i].dc;
if(nr >= 0 && nr < m && nc >= 0 && nc < n){
if(!check[nr][nc] && picture[nr][nc] == curcolor){
check[nr][nc] = true;
q.push(make_pair(nr, nc));
cnt++;
}
}
}
}
areas.push_back(cnt);
cnt = 0;
}
}
}
sort(areas.begin(), areas.end(), greater<int>());
answer[0] = areas.size();
answer[1] = areas[0];
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-4. 프로그래머스' 카테고리의 다른 글
[프로그래머스] 레벨 2 - 프린터 (0) | 2020.02.03 |
---|---|
[프로그래머스] 레벨 2 - 탑 (0) | 2020.02.03 |
[프로그래머스] 레벨 2 - 124 나라의 숫자 (0) | 2020.02.02 |
[프로그래머스] 레벨 3 - N으로 표현 (0) | 2020.01.31 |
[프로그래머스] 레벨 2 - 쇠막대기 (0) | 2020.01.31 |
Comments