๋ฌธ์ (์ถ์ฒ: https://www.acmicpc.net/problem/10709)
< ๊ธฐ์์บ์คํฐ >
๋ฌธ์ ํ์ด
๊ตฌ๋ฆ์ด ๋์ชฝ์ผ๋ก๋ง ์ด๋ํ ๋ ์์ง ๊ตฌ๋ฆ์ด ๋จ์ง ์์ ๊ณณ์ ํ์๋ฅผ ํด์ค๋ค.
my solution (Java)
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.util.LinkedList;
import java.util.Queue;
import java.util.StringTokenizer;
public class _10709_ { // ๊ธฐ์์บ์คํฐ
public static void main(String[] args) throws IOException {
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
StringTokenizer st = new StringTokenizer(bf.readLine());
int h = Integer.parseInt(st.nextToken());
int w = Integer.parseInt(st.nextToken());
int arr[][] = new int[h][w];
Queue<int[]> queue = new LinkedList<>();
for (int i = 0; i < h; i++) {
String str = bf.readLine();
for (int j = 0; j < w; j++) {
char x = str.charAt(j);
if (x == 'c') {
queue.add(new int[] { i, j });
arr[i][j] = 0;
} else
arr[i][j] = -1;
}
}
while (!queue.isEmpty()) {
int num[] = queue.poll();
int y = num[1] + 1;
if (y >= 0 && y < w && arr[num[0]][y] == -1) {
arr[num[0]][y] = arr[num[0]][num[1]] + 1;
queue.add(new int[] { num[0], y });
}
}
for (int i = 0; i < h; i++) {
for (int j = 0; j < w; j++) {
bw.write(arr[i][j] + " ");
}
bw.write("\n");
}
bw.flush();
}
}
Main
๋ณ์)
h, w : ๋จ๋ถ๋ฐฉํฅ, ๋์๋ฐฉํฅ
arr : ๊ตฌ๋ฆ์ด ์ค๋ ์๊ฐ
queue : ๊ตฌ๋ฆ ์์น
- ๋จ๋ถ๋ฐฉํฅ(h), ๋์๋ฐฉํฅ(w) ์ ๋ ฅ
- ๋ฌธ์์ด์ ์ ๋ ฅ๋ฐ์ ๊ตฌ๋ฆ์ด ์๋ ๊ณณ์ด๋ฉด arr์ 0์ ์ ์ฅํ๋ฉฐ queue์ ๊ตฌ๋ฆ์ ์์น๋ฅผ ์ ์ฅ, ์๋ ๊ณณ์ด๋ฉด -1์ ์ ์ฅ
- queue๊ฐ ๋น ๋๊น์ง ๋ฐ๋ณต
: ๋์ชฝ์ผ๋ก ์ด๋ํ ๊ณณ์ด ๋ฒ์ ์์ด๋ฉฐ ์์ง ๊ตฌ๋ฆ์ด ์ค์ง ์์ ๊ณณ์ด๋ผ๋ฉด ์๊ฐ ์ ์ฅ ๋ฐ queue์ ์ถ๊ฐ
- ์ ๋ต ์ถ๋ ฅ

'๐Algorithm > ๐ฅBaekjoon' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Baekjoon] 2992_ํฌ๋ฉด์ ์์ ์ (1) | 2023.10.05 |
---|---|
[Baekjoon] 19941_ํ๋ฒ๊ฑฐ ๋ถ๋ฐฐ (0) | 2023.10.04 |
[Baekjoon] 6146_์ ์๋ฅผ ๋ง๋๋ฌ (1) | 2023.10.02 |
[Baekjoon] 15688_์ ์ ๋ ฌํ๊ธฐ 5 (0) | 2023.09.29 |
[Baekjoon] 1758_์๋ฐ์ ๊ฐํธ (0) | 2023.09.28 |