Language/C#

[C#] 1012번 유기농 배추

석영 2024. 10. 7. 17:26
반응형

문제

차세대 영농인 한나는 강원도 고랭지에서 유기농 배추를 재배하기로 하였다. 농약을 쓰지 않고 배추를 재배하려면 배추를 해충으로부터 보호하는 것이 중요하기 때문에, 한나는 해충 방지에 효과적인 배추흰지렁이를 구입하기로 결심한다. 이 지렁이는 배추근처에 서식하며 해충을 잡아 먹음으로써 배추를 보호한다. 특히, 어떤 배추에 배추흰지렁이가 한 마리라도 살고 있으면 이 지렁이는 인접한 다른 배추로 이동할 수 있어, 그 배추들 역시 해충으로부터 보호받을 수 있다. 한 배추의 상하좌우 네 방향에 다른 배추가 위치한 경우에 서로 인접해있는 것이다.

한나가 배추를 재배하는 땅은 고르지 못해서 배추를 군데군데 심어 놓았다. 배추들이 모여있는 곳에는 배추흰지렁이가 한 마리만 있으면 되므로 서로 인접해있는 배추들이 몇 군데에 퍼져있는지 조사하면 총 몇 마리의 지렁이가 필요한지 알 수 있다. 예를 들어 배추밭이 아래와 같이 구성되어 있으면 최소 5마리의 배추흰지렁이가 필요하다. 0은 배추가 심어져 있지 않은 땅이고, 1은 배추가 심어져 있는 땅을 나타낸다.

1 1 0 0 0 0 0 0 0 0
0 1 0 0 0 0 0 0 0 0
0 0 0 0 1 0 0 0 0 0
0 0 0 0 1 0 0 0 0 0
0 0 1 1 0 0 0 1 1 1
0 0 0 0 1 0 0 1 1 1

 

 

 

코드

1. 내 코드

int n, m, cabbage;
bool[,] a = new bool[51, 51];
bool[,] check = new bool[51, 51];
int[] dx = { 0, 0, 1, -1 };
int[] dy = { 1, -1, 0, 0 };

int TC = int.Parse(Console.ReadLine());
for (int i = 0; i < TC; i++)
{
    string[] inputs = Console.ReadLine().Split();
    m = int.Parse(inputs[0]);
    n = int.Parse(inputs[1]);
    cabbage = int.Parse(inputs[2]);

    Array.Clear(a, 0, a.Length);
    Array.Clear(check, 0, check.Length);

    for (int j = 0; j < cabbage; j++)
    {
        inputs = Console.ReadLine().Split();
        int x = int.Parse(inputs[0]);
        int y = int.Parse(inputs[1]);
        a[y, x] = true;
    }

    int bug_count = 0;

    for (int j = 0; j < n; j++)
    {
        for (int k = 0; k < m; k++)
        {
            if (a[j, k] && !check[j, k])
            {
                if (Dfs(j, k)) bug_count++;
            }
        }
    }

    Console.WriteLine(bug_count);
}

bool Dfs(int y, int x)
{
    if (check[y, x]) return false;
    check[y, x] = true;

    for (int i = 0; i < 4; i++)
    {
        int next_x = x + dx[i];
        int next_y = y + dy[i];

        if (next_x >= 0 && next_y >= 0 && next_x < m && next_y < n && a[next_y, next_x])
            Dfs(next_y, next_x);
    }
    return true;
}

 

2. 다른 사람 코드

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace _1012_유기농배추
{
    class Program
    {
        static int earthwormCnt = 0;
        static int M;
        static int N;
        static void Main(string[] args)
        {
            StreamReader sr = new StreamReader(new BufferedStream(Console.OpenStandardInput()));

            // Test case
            int T = int.Parse(sr.ReadLine());

            while(T-- > 0)
            {
                // 가로길이 M(1 <= M <= 50), 세로길이 N(1 <= N <= 50), 심어져 있는 배추 개수 K(1 <= K <= 2500)
                int[] input = Array.ConvertAll(sr.ReadLine().Split(), int.Parse);
                M = input[0];
                N = input[1];
                bool[,] cabbages = new bool[N, M];
                int cnt = 0;

                for (int i = 0; i < input[2]; i++)
                {
                    int[] cLocation = Array.ConvertAll(sr.ReadLine().Split(), int.Parse);

                    cabbages[cLocation[1], cLocation[0]] = true;
                }

                for (int row = 0; row < N; row++)
                {
                    for (int col = 0; col < M; col++)
                    {
                        if(cabbages[row, col])
                        {
                            cnt++;
                            cabbages[row, col] = false;

                            FindTheNearst(row, col, cabbages);
                        }
                    }
                }

                Console.WriteLine(cnt);
            }
        }

        static void FindTheNearst(int row, int col, bool[,] cabbages)
        {
            if (0 <= col - 1)
            {
                if (cabbages[row, col - 1])
                {
                    cabbages[row, col - 1] = false;

                    FindTheNearst(row, col - 1, cabbages);
                }
            }
            if (0 <= row - 1)
            {
                if (cabbages[row - 1, col])
                {
                    cabbages[row - 1, col] = false;

                    FindTheNearst(row - 1, col, cabbages);
                }
            }
            if (col + 1 < M)
            {
                if(cabbages[row, col + 1])
                {
                    cabbages[row, col + 1] = false;

                    FindTheNearst(row, col + 1, cabbages);
                }
            }
            if(row + 1 < N)
            {
                if (cabbages[row + 1, col])
                {
                    cabbages[row + 1, col] = false;

                    FindTheNearst(row + 1, col, cabbages);
                }
            }
        }
    }
}

 

 

 

실행화면

 

 

 

 

 


문제링크: https://www.acmicpc.net/problem/1012

 

반응형