728x90
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
|
import java.io.IOException;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
static int nV; //정점 수
static int nE; //간선 수
static int[][] arr;
static boolean[] visit;
static int cnt = -1;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
nV = Integer.parseInt(st.nextToken());
st = new StringTokenizer(br.readLine());
nE = Integer.parseInt(st.nextToken());
arr = new int[nV+1][nV+1];
visit = new boolean[nV+1];
for(int i = 0; i < nE; i++){
st = new StringTokenizer(br.readLine());
int s1 = Integer.parseInt(st.nextToken());
int s2 = Integer.parseInt(st.nextToken());
arr[s1][s2] = arr[s2][s1] = 1;
}
System.out.print(dfs(1));
}
public static int dfs(int i){
visit[i] = true;
cnt++;
for(int j = 1; j < nV+1; j++){
if(arr[i][j] == 1 && visit[j] == false)
dfs(j);
}
return cnt;
}
}
|
cs |
dfs를 공부하고 처음으로 풀어본 문제이다. dfs개념 문제를 많이 풀어보고 난 뒤에 도전한 문제였다. 이 문제는 dfs 개념을 이해하는데 아주 적합한 문제였다.
728x90
'BOJ(Java)' 카테고리의 다른 글
자바(백준) 2210 숫자판 점프 (0) | 2020.10.26 |
---|---|
자바(백준) 1325 효율적인 해킹 (0) | 2020.10.26 |
자바(백준) 11057 오르막 수 (0) | 2020.09.28 |
자바(백준) 11726 2*N 타일링 2 (0) | 2020.09.28 |
자바(백준) 11726 2*n 타일링 (0) | 2020.09.28 |