Outdated/Algorithm Solution

[BOJ] 7569번 토마토

해달 2020. 3. 17. 18:00

문제

철수의 토마토 농장에서는 토마토를 보관하는 큰 창고를 가지고 있다. 토마토는 아래의 그림과 같이 격자모양 상자의 칸에 하나씩 넣은 다음, 상자들을 수직으로 쌓아 올려서 창고에 보관한다.



창고에 보관되는 토마토들 중에는 잘 익은 것도 있지만, 아직 익지 않은 토마토들도 있을 수 있다. 보관 후 하루가 지나면, 익은 토마토들의 인접한 곳에 있는 익지 않은 토마토들은 익은 토마토의 영향을 받아 익게 된다. 하나의 토마토에 인접한 곳은 위, 아래, 왼쪽, 오른쪽, 앞, 뒤 여섯 방향에 있는 토마토를 의미한다. 대각선 방향에 있는 토마토들에게는 영향을 주지 못하며, 토마토가 혼자 저절로 익는 경우는 없다고 가정한다. 철수는 창고에 보관된 토마토들이 며칠이 지나면 다 익게 되는지 그 최소 일수를 알고 싶어 한다.


토마토를 창고에 보관하는 격자모양의 상자들의 크기와 익은 토마토들과 익지 않은 토마토들의 정보가 주어졌을 때, 며칠이 지나면 토마토들이 모두 익는지, 그 최소 일수를 구하는 프로그램을 작성하라. 단, 상자의 일부 칸에는 토마토가 들어있지 않을 수도 있다.



입력

첫 줄에는 상자의 크기를 나타내는 두 정수 M,N과 쌓아올려지는 상자의 수를 나타내는 H가 주어진다. M은 상자의 가로 칸의 수, N은 상자의 세로 칸의 수를 나타낸다. 단, 2 ≤ M ≤ 100, 2 ≤ N ≤ 100, 1 ≤ H ≤ 100 이다. 둘째 줄부터는 가장 밑의 상자부터 가장 위의 상자까지에 저장된 토마토들의 정보가 주어진다. 즉, 둘째 줄부터 N개의 줄에는 하나의 상자에 담긴 토마토의 정보가 주어진다. 각 줄에는 상자 가로줄에 들어있는 토마토들의 상태가 M개의 정수로 주어진다. 정수 1은 익은 토마토, 정수 0 은 익지 않은 토마토, 정수 -1은 토마토가 들어있지 않은 칸을 나타낸다. 이러한 N개의 줄이 H번 반복하여 주어진다.


출력

여러분은 토마토가 모두 익을 때까지 최소 며칠이 걸리는지를 계산해서 출력해야 한다. 만약, 저장될 때부터 모든 토마토가 익어있는 상태이면 0을 출력해야 하고, 토마토가 모두 익지는 못하는 상황이면 -1을 출력해야 한다.


코드

  • C++ 17


#include <iostream>

#include <queue>

#include <tuple>

 

#define CHECK_AND_EMPLACE(h, n, m)      { Box[h][n][m] = RIPE; que.emplace(h, n, m); --NumOfUnripe; }

 

using namespace std;

 

using Position = tuple<int, int, int>;

 

enum { NONE = -1, UNRIPE, RIPE };

 

int M, N, H, NumOfUnripe;

int Box[100][100][100];

 

// BFS 문제이므로 큐를 사용한다.

queue<Position> que;

 

int main()

{

    ios::sync_with_stdio(false);

    cin.tie(nullptr);

    cout.tie(nullptr);

 

    cin >> M >> N >> H;

    for (int h = 0; h < H; ++h)

    {

        for (int n = 0; n < N; ++n)

        {

            for (int m = 0; m < M; ++m)

            {

                cin >> Box[h][n][m];

                if (Box[h][n][m] == RIPE)

                    que.emplace(h, n, m);

                else if (Box[h][n][m] == UNRIPE)

                    ++NumOfUnripe;

            }

        }

    }

 

    int temp = que.size();

    int result = -1;

    while (que.empty() == false)

    {

        auto [h, n, m] = que.front();

        que.pop();

 

        // 왼쪽

        if (m - 1 >= 0 && Box[h][n][m - 1] == UNRIPE)

            CHECK_AND_EMPLACE(h, n, m - 1);

        // 오른쪽

        if (m + 1 < M && Box[h][n][m + 1] == UNRIPE)

            CHECK_AND_EMPLACE(h, n, m + 1);

        // 앞

        if (n - 1 >= 0 && Box[h][n - 1][m] == UNRIPE)

            CHECK_AND_EMPLACE(h, n - 1, m);

        // 뒤

        if (n + 1 < N && Box[h][n + 1][m] == UNRIPE)

            CHECK_AND_EMPLACE(h, n + 1, m);

        // 아래

        if (h - 1 >= 0 && Box[h - 1][n][m] == UNRIPE)

            CHECK_AND_EMPLACE(h - 1, n, m);

        // 위

        if (h + 1 < H && Box[h + 1][n][m] == UNRIPE)

            CHECK_AND_EMPLACE(h + 1, n, m);

 

        --temp;

        if (temp == 0)

        {

            ++result;

            temp = que.size();

        }

    }

 

    // 모두 숙성되었는지 판단한다.

    if (NumOfUnripe > 0)

        cout << -1;

    else

        cout << result;

}


  • C# 6.0


using System;

using System.Collections.Generic;

 

namespace Csharp

{

    class Program

    {

        struct Pos

        {

            public sbyte H;

            public sbyte N;

            public sbyte M;

        }

 

        static int M, N, H, NumOfUnripe;

        static sbyte[,,] Box = new sbyte[100, 100, 100];

        static Queue<Pos> Q = new Queue<Pos>(100 * 100 * 100);

        static Pos TempPos;

 

        static void Main(string[] args)

        {

            var inputs = Console.ReadLine().Split();

            M = Convert.ToInt32(inputs[0]);

            N = Convert.ToInt32(inputs[1]);

            H = Convert.ToInt32(inputs[2]);

 

            for (int h = 0; h < H; ++h)

            {

                for (int n = 0; n < N; ++n)

                {

                    inputs = Console.ReadLine().Split();

                    for (int m = 0; m < M; ++m)

                    {

                        Box[h, n, m] = sbyte.Parse(inputs[m]);

                        if (Box[h, n, m] == 0)

                            ++NumOfUnripe;

                        else if (Box[h, n, m] == 1)

                            Enqueue(h, n, m);

                    }

                }

            }

 

            int lineCount = Q.Count;

            int result = -1;

            while (Q.Count != 0)

            {

                var item = Q.Dequeue();

                int h = item.H, n = item.N, m = item.M;

 

                if (m - 1 >= 0 && Box[h, n, m - 1] == 0)

                    CheckAndEnqueue(h, n, m - 1);

                if (m + 1 < M && Box[h, n, m + 1] == 0)

                    CheckAndEnqueue(h, n, m + 1);

                if (n - 1 >= 0 && Box[h, n - 1, m] == 0)

                    CheckAndEnqueue(h, n - 1, m);

                if (n + 1 < N && Box[h, n + 1, m] == 0)

                    CheckAndEnqueue(h, n + 1, m);

                if (h - 1 >= 0 && Box[h - 1, n, m] == 0)

                    CheckAndEnqueue(h - 1, n, m);

                if (h + 1 < H && Box[h + 1, n, m] == 0)

                    CheckAndEnqueue(h + 1, n, m);

 

                --lineCount;

                if (lineCount == 0)

                {

                    lineCount = Q.Count;

                    ++result;

                }

            }

 

            if (NumOfUnripe > 0)

                Console.WriteLine(-1);

            else

                Console.WriteLine(result);

        }

 

        public static void Enqueue(int h, int n, int m)

        {

            TempPos.H = (sbyte)h;

            TempPos.N = (sbyte)n;

            TempPos.M = (sbyte)m;

            Q.Enqueue(TempPos);

        }

 

        public static void CheckAndEnqueue(int h, int n, int m)

        {

            Box[h, n, m] = 1;

            Enqueue(h, n, m);

            --NumOfUnripe;

        }

 

    }

}

 


  • Python 3


from sys import stdin

from collections import deque

input = stdin.readline

 

M, N, H = map(int, input().split())

Q = deque()

Box = [ [ [0] * M for n in range(N) ] for h in range(H) ]

 

def getRipe(h, n, m):

    global Box, Q

    Box[h][n][m] = 1

    Q.append((h, n, m))

 

def isAllRipe():

    global Box

    for b in Box:

        for line in b:

            if line.count(0) > 0:

                return False

    return True

 

for h in range(H):

    for n in range(N):

        row = list(map(int, input().split()))

        Box[h][n] = row

        

        for m in range(M):

            if row[m] == 1:

                Q.append((h, n, m))

 

def bfs():

    global Box, Q

    

    if isAllRipe():

        return 0

 

    result = 0

    while Q:

        sz = len(Q)

        result += 1

        for _ in range(sz):

            h, n, m = Q.popleft()

            if m > 0 and Box[h][n][m - 1] == 0:

                getRipe(h, n, m - 1)

            if m < M - 1 and Box[h][n][m + 1] == 0:

                getRipe(h, n, m + 1)

            if n > 0 and Box[h][n - 1][m] == 0:

                getRipe(h, n - 1, m)

            if n < N - 1 and Box[h][n + 1][m] == 0:

                getRipe(h, n + 1, m)

            if h > 0 and Box[h - 1][n][m] == 0:

                getRipe(h - 1, n, m)

            if h < H - 1 and Box[h + 1][n][m] == 0:

                getRipe(h + 1, n, m)

        

        if isAllRipe():

            return result

 

    return -1

 

result = bfs()

print(result)


복기

Python3를 이용할 때 collections 라이브러리의 자료구조를 적극적으로 이용해야겠다. 성능이 비약적으로 향상한다. deque는 컨테이너 양 끝에서의 연산이 O(1)의 속도를 가지며, 스레드 안전성이 있고, list는 고정 길이 연산에 특화되어 있다.



'Outdated > Algorithm Solution' 카테고리의 다른 글

[BOJ] 2660번 회장 선출  (0) 2020.03.19
[BOJ] 1991번 트리 순회  (0) 2020.03.19
[BOJ] 11404번 플로이드  (0) 2020.03.16
[BOJ] 1967번 트리의 지름  (0) 2020.03.09
[BOJ] 1012번 유기농 배추  (0) 2020.03.02