반응형
[Silver II] DFS와 BFS - 1260
성능 요약
메모리: 32708 KB, 시간: 448 ms
분류
그래프 이론, 그래프 탐색, 너비 우선 탐색, 깊이 우선 탐색
제출 일자
2024년 10월 6일 03:53:33
문제 설명
그래프를 DFS로 탐색한 결과와 BFS로 탐색한 결과를 출력하는 프로그램을 작성하시오. 단, 방문할 수 있는 정점이 여러 개인 경우에는 정점 번호가 작은 것을 먼저 방문하고, 더 이상 방문할 수 있는 점이 없는 경우 종료한다. 정점 번호는 1번부터 N번까지이다.
입력
첫째 줄에 정점의 개수 N(1 ≤ N ≤ 1,000), 간선의 개수 M(1 ≤ M ≤ 10,000), 탐색을 시작할 정점의 번호 V가 주어진다. 다음 M개의 줄에는 간선이 연결하는 두 정점의 번호가 주어진다. 어떤 두 정점 사이에 여러 개의 간선이 있을 수 있다. 입력으로 주어지는 간선은 양방향이다.
출력
첫째 줄에 DFS를 수행한 결과를, 그 다음 줄에는 BFS를 수행한 결과를 출력한다. V부터 방문된 점을 순서대로 출력하면 된다.
제출 코드
import java.io.*;
import java.util.*;
public class Main {
static int N;
static int[][] map;
static boolean[] visitied;
static void dfs(int current){
System.out.print((current+1) + " ");
visitied[current] = true;
for(int next=0; next<N; next++){
if(map[current][next] == 1 && !visitied[next]){
dfs(next);
}
}
}
static void bfs(int start){
Queue<Integer> queue = new LinkedList<>();
queue.add(start);
while(!queue.isEmpty()){
System.out.print((queue.peek()+1) + " ");
visitied[queue.peek()] = true;
for(int i = 0; i<N; i++){
if(!visitied[i] && map[queue.peek()][i] == 1 && !queue.contains(i)){
queue.add(i);
}
}
queue.poll();
}
}
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int[] NMV = Arrays.stream(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
N = NMV[0];
map = new int[N][N];
int[] temp;
for(int i=0; i<NMV[1]; i++){
temp = Arrays.stream(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
map[temp[0]-1][temp[1]-1] = 1;
map[temp[1]-1][temp[0]-1] = 1;
}
visitied = new boolean[N];
dfs(NMV[2]-1);
System.out.println();
visitied = new boolean[N];
bfs(NMV[2]-1);
}
}
728x90
반응형
'코딩 테스트 정복기 > 백준' 카테고리의 다른 글
[백준/Silver III] 1, 2, 3 더하기 - 9095 (0) | 2024.10.16 |
---|---|
[백준/Silver III] 피보나치 함수 - 1003 (0) | 2024.10.16 |
[백준/Silver V] 집합 - 11723 (1) | 2024.10.16 |
[백준/Silver I] 구간 합 구하기 5 - 11660 (1) | 2024.10.15 |
[백준/Silver III] 1로 만들기 - 1463 (0) | 2024.10.14 |