๐ŸŒžAlgorithm/๐Ÿ”ฅBaekjoon

[Baekjoon] 10709_๊ธฐ์ƒ์บ์Šคํ„ฐ

๋ฟŒ์•ผ._. 2023. 10. 3. 13:42

Silver V

๋ฌธ์ œ(์ถœ์ฒ˜: 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์— ์ถ”๊ฐ€

- ์ •๋‹ต ์ถœ๋ ฅ