7569 토마토문제 : https://www.acmicpc.net/problem/7569풀이 : 2차원 배열 토마토 문제가 크게 다르진 않은 것 같습니다. 층에 관련된 부분을 3차원 배열로 표현해 bfs를 활용했습니다. 코드: https://github.com/cksgus/algorithm/blob/master/baekjoon/c%2B%2B/7569(%ED%86%A0%EB%A7%88%ED%86%A0).cpp xxxxxxxxxx#include#includeusing namespace std;typedef struct tomatoDir { int h; int y; int x; int cnt;public: tomatoDir() {} tomatoDir(int h, int y, int x,int cnt) :..