Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 5397
- 시간 복잡도
- 백준 2447
- 구현
- Stack 이란
- 백준 5397
- 해시구현
- 원판 돌리기
- dfs
- 버킷 정렬
- ㅣ풀이
- qorwns
- 백준 1158
- 백준 1406
- 백준 17779
- 백준 17471
- 해시 구현
- AVL 시간 복잡도
- 별 찍기 10
- heap
- 백준 17822
- C/C++ 구현
- 스택의 특징
- 게리멘더링2
- c#
- 풀이
- 1764
- 백준
- 조세퍼스 순열
- 자료구조
Archives
- Today
- Total
홍시홍의 프로그래밍
[백준 2667] 단지번호 붙이기 본문
https://www.acmicpc.net/problem/2667
문제 요구사항
1. 단지 개수 출력 하기
2. 단지 별 크기 오름차순으로 출력하기
1번 풀이
전체 크기만큼 탐색하여 bfs가 돌입 시점에 단지 개수를 1 증가 시켜준다.
visit배열을 선언하여 아파트가 있고 방문을 안했다면 bfs시작할 수 있도록 한다.
상하좌우로 탐색하여 위 조건일 경우 queue에 넣어 탐색한다.
2번 풀이
단지 별 크기를 저장할 배열에 단지 크기를 저장한다.
sort를 이용하여 오름차순으로 정렬한다.
#include <iostream>
#include <queue>
#include <algorithm>
using namespace std;
struct go {
int x;
int y;
};
int map[26][26];
int n;
int visit[26][26];
int number[26 * 26];
int dr[4] = { -1,0,1,0 };
int dc[4] = { 0,-1,0,1 };
int main()
{
scanf("%d", &n);
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
char ch;
scanf(" %c", &ch);
map[i][j] = ch - '0';
}
}
int cnt = 0;
int a = 0;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
if (map[i][j] > 0 && visit[i][j] == 0)
{
queue<go> q;
cnt++;
visit[i][j] = 1;
q.push({ i,j });
int num = 1;
while (!q.empty())
{
int r = q.front().x;
int c = q.front().y;
q.pop();
for (int k = 0; k < 4; k++)
{
int nr = r + dr[k];
int nc = c + dc[k];
if (nr < 0 || nc < 0 || nr >= n || nc >= n)
continue;
if (map[nr][nc] == 1 && visit[nr][nc] == 0)
{
num++;
visit[nr][nc] = 1;
q.push({ nr,nc });
}
}
}
number[a] = num;
a++;
}
}
}
cout << cnt << endl;
sort(number, number + a);
for (int i = 0; i < a; i++)
{
cout << number[i] << endl;
}
}
'알고리즘 문제풀이 > 백준' 카테고리의 다른 글
[백준 17779] 게리맨더링2 (0) | 2019.11.12 |
---|---|
[백준 17471] 게리멘더링 (0) | 2019.09.20 |
[백준 11279] 최대 힙 (0) | 2019.08.16 |
[백준 1927] 최소 힙 (0) | 2019.08.16 |
[백준 17406] 배열돌리기 4 (0) | 2019.08.13 |
Comments