[PS] 99ํด๋ฝ ์ฝํ ์คํฐ๋ 31์ผ์ฐจ TIL (์ ํ ์ ํ)
ํ๊ทธ: 99ํด๋ฝ, BFS/DFS, PS, TIL, ์ฝ๋ฉํ ์คํธ์ค๋น, ํญํด99
์นดํ ๊ณ ๋ฆฌ: PS
๋ฌธ์
์ค๋ช
์ฃผ์ด์ง ๋๋ค๋ฆฌ ๊ฐฏ์(n) ๊ฐ ์ฃผ์ด์ง๊ณ ๊ฐ ๋๋ค๋ฆฌ์ ์ด๋ ๊ฐ์ด ์ ํ ์๋ค. ๊ทธ ๊ฐ๋งํผ ์ผ์ชฝ ๋๋ ์ค๋ฅธ์ชฝ์ผ๋ก ์ ํํ ์ ์๋ค.
๋ฐฐ์ด์ ์ด๋๊ฐ์ ๋ณด๊ดํ๋ค๊ฐ ์ด๋ ์ ๊ณ์ฐํ๋ค.
์๋ฅผ ๋ค์ด, arr[i] = x
๋ผ๋ฉด
i
์์i - x
๋ก ์ด๋ํ ์ ์๋ค๋ฉด, ์ผ์ชฝ์ผ๋ก ์ด๋ํ ์ ์๊ณ , ์ ์ i
์ ์ ์ i - x
๊ฐ ๊ฐ์ ์ผ๋ก ์ฐ๊ฒฐ๋ ๊ฒ์ด๋ค.i
์์i + x
๋ก ์ด๋ํ ์ ์๋ค๋ฉด, ์ค๋ฅธ์ชฝ์ผ๋ก ์ด๋ํ ์ ์๊ณ , ์ ์ i
์ ์ ์ i + x
๊ฐ ๊ฐ์ ์ผ๋ก ์ฐ๊ฒฐ๋ ๊ฒ์ด๋ค.
ํ์ด
dfs ๋ฅผ ์์ํ ์ง์ ์ด ์ ๋ ฅ์ผ๋ก ๋ค์ด์ค๊ณ ํด๋น ์ธ๋ฑ์ค๋ถํฐ ์ผ์ชฝ, ์ค๋ฅธ์ชฝ์ ํ์ํ๋ค. ์ด๋, ์ด๋ ํ ์ธ๋ฑ์ค๊ฐ ๋ฐฐ์ด ๋ฒ์๋ด์ ์๋์ง ํ์ธํ๋ฉด์ ์งํํ๋ค.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
public class Main {
static int[] arr;
static int count = 0;
static int n;
static boolean[] visited;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
n = Integer.parseInt(br.readLine());
arr = new int[n];
visited = new boolean[n];
StringTokenizer st = new StringTokenizer(br.readLine());
for (int i = 0; i < n; i++) {
arr[i] = Integer.parseInt(st.nextToken());
}
int s = Integer.parseInt(br.readLine());
dfs(s - 1);
System.out.println(count);
}
private static void dfs(int index) {
if (visited[index]) {
return;
}
visited[index] = true;
count++;
int left = index - arr[index];
int right = index + arr[index];
if (isInRange(left)) {
dfs(left);
}
if (isInRange(right)) {
dfs(right);
}
}
private static boolean isInRange(int index) {
return index >= 0 && index < n;
}
}
๋๊ธ๋จ๊ธฐ๊ธฐ