7569번: 토마토https://www.acmicpc.net/problem/7569 # 코드import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.LinkedList;import java.util.Queue;import java.util.StringTokenizer;class PointXYZ{ int height; int row; int col; public PointXYZ(int height, int row, int col){ this.height = height; this.row = row; this.col ..