-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52 from AlgoLeadMe/15-mong3125
15-mong3125
- Loading branch information
Showing
1 changed file
with
84 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
package κ·Έλν; | ||
|
||
import java.io.BufferedReader; | ||
import java.io.IOException; | ||
import java.io.InputStreamReader; | ||
import java.util.*; | ||
|
||
public class BOJ7569_ν λ§ν { | ||
|
||
static int M, N, H; | ||
static int[][][] box; | ||
|
||
static Queue<int[]> ripen = new LinkedList<>(); // μ΅μ ν λ§ν μμΉ | ||
static int notRipenTomatos = 0; | ||
static int result = 1; | ||
static int[][] directions = { | ||
{1, 0, 0}, | ||
{-1, 0, 0}, | ||
{0, 1, 0}, | ||
{0, -1, 0}, | ||
{0, 0, 1}, | ||
{0, 0, -1}, | ||
}; | ||
|
||
public static void main(String[] args) throws IOException { | ||
// == μ λ ₯ == // | ||
BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); | ||
StringTokenizer st = new StringTokenizer(br.readLine()); | ||
|
||
M = Integer.parseInt(st.nextToken()); | ||
N = Integer.parseInt(st.nextToken()); | ||
H = Integer.parseInt(st.nextToken()); | ||
box = new int[H][N][M]; | ||
|
||
for (int i = 0; i < H; i++) { | ||
for (int j = 0; j < N; j++) { | ||
st = new StringTokenizer(br.readLine()); | ||
for (int k = 0; k < M; k++) { | ||
box[i][j][k] = Integer.parseInt(st.nextToken()); | ||
|
||
// μ΅μ ν λ§ν μμΉ μ μ₯ | ||
if (box[i][j][k] == 1) ripen.add(new int[]{i, j, k}); | ||
else if (box[i][j][k] == 0) notRipenTomatos++; | ||
} | ||
} | ||
} | ||
|
||
// == νμ΄ == // | ||
bfs(); | ||
|
||
// λͺ¨λ ν λ§ν κ° μ΅μκ² μλλΌλ©΄ -1 λ°ν | ||
if (notRipenTomatos > 0) { | ||
result = 0; | ||
} | ||
|
||
// == μΆλ ₯ == // | ||
System.out.println(result - 1); | ||
} | ||
|
||
public static void bfs() { | ||
while (!ripen.isEmpty()) { | ||
int[] tomato = ripen.remove(); | ||
for (int[] direction : directions) { | ||
int z = tomato[0] + direction[0]; | ||
int y = tomato[1] + direction[1]; | ||
int x = tomato[2] + direction[2]; | ||
|
||
if (isInRange(z, y, x)) { | ||
if (box[z][y][x] == 0) { | ||
box[z][y][x] = box[tomato[0]][tomato[1]][tomato[2]] + 1; | ||
result = Math.max(result, box[z][y][x]); | ||
notRipenTomatos--; | ||
|
||
ripen.add(new int[]{z, y, x}); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
public static boolean isInRange(int z, int y, int x) { | ||
return (x >= 0 && x < M && y >= 0 && y < N && z >= 0 && z < H); | ||
} | ||
} |