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
- 자료구조
- 약참조
- 언리얼엔진구조체
- C++
- 알고리즘
- dataasset
- 데이터애셋
- 언리얼가비지컬렉터
- unorder_map
- enumasByue
- UE4 커스텀로그
- UELOG
- 크리티컬섹션
- C++최적화
- BFS
- 람다사용정렬
- stl
- 애셋로드
- moreeffectiveC++
- 프로그래머스
- 델리게이트
- 람다
- 강참조
- 스마트포인터
- UML관련
- UE_LOG
- 선택정렬
- 정렬알고리즘
- 정렬
Archives
- Today
- Total
기억을 위한 기록들
[백준 2667 : 단지번호 붙이기] - C++ 본문
#include <iostream>
#include <vector>
#include <string>
#include <queue>
#include <algorithm>
using namespace std;
vector<int>map[100];
vector<int>result;
int cnt = 0;
int dx[4] = { -1,0,1,0 };
int dy[4] = { 0,1,0,-1 };
int n;
struct Location {
int x;
int y;
Location(int _x, int _y)
{
x = _x;
y = _y;
}
};
int main()
{
cin >> n;
string num;
for (int i = 0; i < n; i++)
{
cin >> num;
for (int j= 0; j < n; j++)
{
int a = num[j]-'0';
map[i].push_back(a);
}
}
queue<Location> Q;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
cnt = 0;
if (map[i][j] == 1) //집인곳
{
map[i][j] = 0;
Q.push(Location(i, j)); ///큐에 넣고
cnt++;
while (!Q.empty()) //아파트인곳 근처 단지 형성되는 곳 찾기
{
Location tmp = Q.front();
Q.pop();
for (int k = 0; k < 4; k++) //4방향
{
int xx = tmp.x+dx[k];
int yy = tmp.y+dy[k];
if (xx < 0 || n <= xx || yy < 0 || n <= yy) //배열 범위 체크
continue;
if (map[xx][yy] == 1) //아파트 추가
{
map[xx][yy] = 0;
cnt++;
Q.push(Location(xx,yy));
}
}
}
result.push_back(cnt);//근처 다 찾으면 찾은 아파트 수 저장
}
}
}
cout << result.size() << endl; //단지 수 출력
sort(result.begin(), result.end()); //수 정렬
for (auto a : result) { //출력
cout << a << endl;
}
return 0;
}
'Coding Test - cpp > BFS' 카테고리의 다른 글
[백준 1697: 숨바꼭질] - C++ (0) | 2021.01.14 |
---|---|
[백준 7576: 토마토] - C++ (0) | 2021.01.13 |
[백준 2178 : 미로 탐색] - C++ (0) | 2021.01.13 |
[백준 1012 : 유기농 배추] - C++ (0) | 2021.01.12 |
송아지찾기(BFS) (0) | 2021.01.08 |