https://www.acmicpc.net/problem/2667
BFS 문제에 재미 붙여서 계속 찾아서 풀게 된다..! 이제는 완전히 문제를 보면 어떤 식으로 풀어나갈지 그려진다.
이 문제에서 주의할 점은, 단지 수를 출력한 뒤에 각 단지에 속한 집의 수를 '오름차순'으로 출력해야 한다는 점이다.
using System;
using System.IO;
using System.Text;
namespace B2667
{
class Program
{
static int N;
static int[,] map = new int[26, 26];
static bool[,] visited = new bool[26, 26];
static Queue<(int, int)> q = new Queue<(int, int)>();
static int[] dx = { -1, 1, 0, 0 };
static int[] dy = { 0, 0, -1, 1 };
static List<int> list = new List<int>();
static void BFS(int x, int y)
{
int count = 0;
q.Enqueue((x, y));
while (q.Count > 0)
{
count++;
var deq = q.Dequeue();
int deqx = deq.Item1;
int deqy = deq.Item2;
visited[deqx, deqy] = true;
for (int i = 0; i < 4; i++)
{
deqx = deq.Item1 + dx[i];
deqy = deq.Item2 + dy[i];
if (deqx < 0 || deqy < 0 || deqx >= N || deqy >= N) continue;
if (map[deqx, deqy] == 1 && visited[deqx, deqy] == false)
q.Enqueue((deqx, deqy));
visited[deqx, deqy] = true;
}
}
list.Add(count);
}
static void Main()
{
StreamReader sr = new StreamReader(Console.OpenStandardInput());
StreamWriter sw = new StreamWriter(Console.OpenStandardOutput());
StringBuilder sb = new StringBuilder();
//입력
N = int.Parse(sr.ReadLine());
for(int i = 0; i < N; i++)
{
string str = sr.ReadLine();
for (int j = 0; j < N; j++) map[i, j] = (int)str[j] - 48; //아스키코드
}
//BFS
for(int i = 0; i < N; i++)
{
for(int j = 0; j < N; j++)
{
if (map[i, j] == 1 && visited[i, j] == false)
BFS(i, j);
}
}
sb.Append(list.Count + "\n");
list.Sort();
foreach (var count in list) sb.Append(count + "\n");
sw.Write(sb);
sr.Close();
sw.Flush();
sw.Close();
}
}
}
'알고리즘 > 백준 BOJ' 카테고리의 다른 글
[ BOJ/C# ] 2609 최대공약수와 최소공배수 (0) | 2023.10.16 |
---|---|
[ BOJ/C# ] 10026 적록색약 (0) | 2023.10.14 |
[ BOJ/C# ] 2178 미로 탐색 (0) | 2023.10.12 |
[ BOJ/C# ] 7569 토마토 ( 3차원 배열 ) (0) | 2023.10.11 |
[ BOJ/C# ] 7576 토마토 (0) | 2023.10.10 |