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
- 언리얼가비지컬렉터
- C++최적화
- 약참조
- UML관련
- 강참조
- UELOG
- 데이터애셋
- dataasset
- unorder_map
- 선택정렬
- stl
- 정렬
- UE_LOG
- 스마트포인터
- enumasByue
- 알고리즘
- 프로그래머스
- UE4 커스텀로그
- 델리게이트
- 크리티컬섹션
- map
- 애셋로드
- 람다
- moreeffectiveC++
- BFS
- 언리얼엔진구조체
- 람다사용정렬
- 정렬알고리즘
- 자료구조
- C++
Archives
- Today
- Total
기억을 위한 기록들
[프로그래머스 lv 2 ] - 카카오프렌즈 컬러링북 본문
https://programmers.co.kr/learn/courses/30/lessons/1829
#include <vector>
#include <queue>
#include <iostream>
using namespace std;
int dir[4][2]={
{0,1}
,{1,0}
,{-1,0}
,{0,-1}
};
bool visit[100][100];
int bfs(int m,int n,int targetX,int targetY,const vector<vector<int>>& picture)
{
int target=picture[targetX][targetY];
int cnt=1;
queue<pair<int,int>> q;
q.push({targetX,targetY});
visit[targetX][targetY] = true;
while(!q.empty())
{
int curX=q.front().first;
int curY=q.front().second;
q.pop();
for(int i=0;i<4;i++)
{
int nextX=curX+dir[i][0];
int nextY=curY+dir[i][1];
if (nextX < 0 || nextY < 0 || m <= nextX || n <= nextY)
continue;
if(picture[nextX][nextY]==target && visit[nextX][nextY]==false)
{
visit[nextX][nextY]=true;
q.push({nextX,nextY});
cnt++;
}
}
}
return cnt;
}
// 전역 변수를 정의할 경우 함수 내에 초기화 코드를 꼭 작성해주세요.
vector<int> solution(int m, int n, vector<vector<int>> picture) {
int number_of_area = 0;
int max_size_of_one_area = 0;
for(int i=0;i<100;i++)
{
for(int j=0;j<100;j++)
visit[i][j]=false;
}
vector<int> answer(2);
int cnt=0;
int maxCnt=0;
for(int i=0;i<m;i++)
{
for(int j=0;j<n;j++)
{
if(visit[i][j]==false && picture[i][j]!=0)
{
int result=bfs(m,n,i,j,picture);
maxCnt=max(result,maxCnt);
cnt++;
}
}
}
answer[0] = cnt;
answer[1] = maxCnt;
return answer;
}
'Coding Test - cpp > BFS' 카테고리의 다른 글
[프로그래머스 lv 2 ] - 게임 맵 최단거리 (0) | 2021.04.20 |
---|---|
[백준 16918: 봄버맨] - C++ (0) | 2021.03.22 |
[백준 3184: 양] - C++ (0) | 2021.03.04 |
[백준 18352: 특정 거리의 도시찾기] - C++ (0) | 2021.02.25 |
[프로그래머스 lv2] 네트워크 - c++ (0) | 2021.02.16 |