관리 메뉴

기억을 위한 기록들

[백준 2667 : 단지번호 붙이기] - C++ 본문

Coding Test - cpp/BFS

[백준 2667 : 단지번호 붙이기] - C++

에드윈H 2021. 1. 12. 14:54

www.acmicpc.net/problem/2667

 

2667번: 단지번호붙이기

<그림 1>과 같이 정사각형 모양의 지도가 있다. 1은 집이 있는 곳을, 0은 집이 없는 곳을 나타낸다. 철수는 이 지도를 가지고 연결된 집의 모임인 단지를 정의하고, 단지에 번호를 붙이려 한다. 여

www.acmicpc.net

#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