상세 컨텐츠

본문 제목

[백준] 1260번 DFS와 BFS (Go)

Development/Algorithm

by thisisnew 2022. 12. 17. 00:01

본문

반응형

https://www.acmicpc.net/problem/1260

 

1260번: DFS와 BFS

첫째 줄에 정점의 개수 N(1 ≤ N ≤ 1,000), 간선의 개수 M(1 ≤ M ≤ 10,000), 탐색을 시작할 정점의 번호 V가 주어진다. 다음 M개의 줄에는 간선이 연결하는 두 정점의 번호가 주어진다. 어떤 두 정점 사

www.acmicpc.net

 

문제

그래프를 DFS로 탐색한 결과와 BFS로 탐색한 결과를 출력하는 프로그램을 작성하시오. 단, 방문할 수 있는 정점이 여러 개인 경우에는 정점 번호가 작은 것을 먼저 방문하고, 더 이상 방문할 수 있는 점이 없는 경우 종료한다. 정점 번호는 1번부터 N번까지이다.

 

입력

첫째 줄에 정점의 개수 N(1 ≤ N ≤ 1,000), 간선의 개수 M(1 ≤ M ≤ 10,000), 탐색을 시작할 정점의 번호 V가 주어진다. 다음 M개의 줄에는 간선이 연결하는 두 정점의 번호가 주어진다. 어떤 두 정점 사이에 여러 개의 간선이 있을 수 있다. 입력으로 주어지는 간선은 양방향이다.

 

출력

첫째 줄에 DFS를 수행한 결과를, 그다음 줄에는 BFS를 수행한 결과를 출력한다. V부터 방문된 점을 순서대로 출력하면 된다.


package main

import (
	"bufio"
	"fmt"
	"os"
)

type Graph1260 struct {
	graph     [][]bool
	isVisited []bool
	result    []int
}

func (g *Graph1260) reset1260(n int) {
	g.isVisited = make([]bool, n+1)
	g.result = []int{}
}

func (g *Graph1260) print1260() {
	for i, v := range g.result {
		fmt.Print(v)
		if i < len(g.result)-1 {
			fmt.Print(" ")
		}
	}
}

func main() {
	var n, m, v int
	var read = bufio.NewReader(os.Stdin)
	fmt.Fscanln(read, &n, &m, &v)

	var graph1260 = Graph1260{
		graph:     make([][]bool, n+1),
		isVisited: make([]bool, n+1),
	}

	for i := range graph1260.graph {
		graph1260.graph[i] = make([]bool, n+1)
	}

	for i := 0; i < m; i++ {
		var p1, p2 int
		fmt.Fscanln(read, &p1, &p2)

		graph1260.graph[p1][p2] = true
		graph1260.graph[p2][p1] = true
	}

	dfs1260(v, &graph1260)
	graph1260.print1260()
	fmt.Println()

	graph1260.reset1260(n)

	bfs1260(v, &graph1260)
	graph1260.print1260()
}

func dfs1260(v int, graph1260 *Graph1260) {
	graph1260.isVisited[v] = true
	graph1260.result = append(graph1260.result, v)

	for i := 0; i < len(graph1260.graph[v]); i++ {
		if graph1260.graph[v][i] && !graph1260.isVisited[i] {
			dfs1260(i, graph1260)
		}
	}
}

func bfs1260(v int, graph1260 *Graph1260) {
	graph1260.isVisited[v] = true
	q := []int{v}

	for {
		if len(q) == 0 {
			return
		}

		f := q[0]
		q = q[1:]
		graph1260.result = append(graph1260.result, f)

		for i := 0; i < len(graph1260.graph[v]); i++ {
			if graph1260.graph[f][i] && !graph1260.isVisited[i] {
				graph1260.isVisited[i] = true
				q = append(q, i)
			}
		}
	}
}

반응형

관련글 더보기

댓글 영역