Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 프로그래머스
- 백준 17626
- 백준 17779
- Coroutine
- Kotlin
- spring security
- 백준 16236
- 프로래머스
- 백준 19238
- re.split
- 백준 15685
- springboot
- MSA
- sql 기술면접
- spring oauth
- with recursive
- spring cloud
- 백준 16719
- 백준 파이썬
- Spring
- java
- JPA
- Spring Boot
- 파이썬
- 백준
- 백준 16235
- MySQL
- java 기술면접
- JVM
- 웹어플리케이션 서버
Archives
- Today
- Total
시작이 반
[백준] 1260번(python 파이썬) 본문
SMALL
DFS와 BFS의 기초 문제이다.
DFS
DFS는 스택과 재귀를 이용하여 문제를 풀 수 있다.
재귀를 이용하여 문제를 풀었다.
시작 노드에서 인접한 노드 중 숫자가 작은 노드를 선택하여 방문처리를 하고 탐색을 들어간다.
더이상 탐색할 점이 없으면 이전노드에 연결되어 있는 점들 중 방문하지 않고 다음으로 큰 노드을 탐색한다.
BFS
BFS는 큐를 이용하여 문제를 풀 수 있다.
1. 탐색 시작 노드를 큐에 삽입하고 방문 처리를 한다.
2. 큐에서 노드를 꺼내 해당 노드의 인접 노드 중 방문하지 않은 노드를 모두 큐에 삽입하고 방문처리를 한다.
3. 2번의 과정을 더 이상 수행할 수 없을 때까지 반복한다.
from collections import deque
n, m, v = map(int, input().split())
graph = [[] for _ in range(n + 1)]
for i in range(m):
a, b = map(int, input().split())
graph[a].append(b)
graph[b].append(a)
graph[a].sort()
graph[b].sort()
visited = [False] * (n + 1)
def Dfs(graph, v, visited):
visited[v] = True
print(v, end=' ')
for i in graph[v]:
if not visited[i]:
Dfs(graph, i, visited)
def Bfs(graph, v, visited):
visited = [False] * (n + 1)
queue = deque([v])
visited[v] = True
while queue:
pop = queue.popleft()
print(pop, end=' ')
for i in graph[pop]:
if not visited[i]:
queue.append(i)
visited[i] = True
Dfs(graph, v, visited)
print()
Bfs(graph, v, visited)
LIST
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 2178번(python 파이썬) (0) | 2021.01.06 |
---|---|
[백준] 1012번(python 파이썬) (0) | 2021.01.06 |
[백준] 1926번(python 파이썬) (0) | 2021.01.05 |
[백준] 2667번(python 파이썬) (0) | 2021.01.05 |
[백준] 2606번(python 파이썬) (0) | 2021.01.04 |