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
- spring security
- java
- springboot
- JVM
- spring cloud
- 백준 15685
- MySQL
- java 기술면접
- 백준 16236
- spring oauth
- Kotlin
- sql 기술면접
- JPA
- Spring Boot
- MSA
- 파이썬
- Spring
- 백준 파이썬
- 백준
- 프로래머스
- 웹어플리케이션 서버
- 프로그래머스
- re.split
- 백준 16719
- Coroutine
- 백준 16235
- 백준 17626
- 백준 19238
- with recursive
- 백준 17779
Archives
- Today
- Total
시작이 반
[백준] 2606번(python 파이썬) 본문
SMALL
DFS, BFS 중 하나를 선택하여 해결할 수 있다.
BFS방식으로 문제를 해결하였다.
BFS는 큐를 이용하여 문제를 풀 수 있다.
1. 탐색 시작 노드를 큐에 삽입하고 방문 처리를 한다.
2. 큐에서 노드를 꺼내 해당 노드의 인접 노드 중 방문하지 않은 노드를 모두 큐에 삽입하고 방문처리를 한다.
3. 2번의 과정을 더 이상 수행할 수 없을 때까지 반복한다.
from collections import deque
n = int(input()); #컴퓨터 수
graph = [[] for _ in range(n + 1)]
e = int(input()); #연결된 선 수
for i in range(e):
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 bfs(graph, start, visited):
result = 0
queue = deque([start])
visited[start] = True
while queue:
pop = queue.popleft()
for e in graph[pop]:
if not visited[e]:
queue.append(e)
visited[e] = True
result += 1
print(result)
bfs(graph, 1, 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 |
[백준] 1260번(python 파이썬) (0) | 2021.01.04 |