https://www.acmicpc.net/problem/2606
문제 해결을 위한 과정
이 문제는 제가 예전에 포스팅한 BFS의 코드를 암기하고 숙지하고 있다면 쉽게 해결할 수 있는 문제였습니다. (https://bgspro.tistory.com/15?category=981927) 먼저 문제에서 입력으로 주어진 그래프를 생성합니다. 그 후 1번 노드에 대해서 BFS를 수행합니다. 이렇게 BFS를 수행하면서 방문하는 노드마다의 개수를 하나씩 센 후 그 결과를 출력하면 됩니다.
소스코드
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
|
from collections import deque
n = int(input())
m = int(input())
graph = [[] for _ in range(1 + n)]
visited = [False] * (1 + n)
for i in range(m):
a, b = map(int, input().split())
graph[a].append(b)
graph[b].append(a)
def bfs(graph, visited, start):
global count
q = deque([start])
visited[start] = True
while q:
v = q.popleft()
for i in graph[v]:
if not visited[i]:
q.append(i)
visited[i] = True
count += 1
count = 0
bfs(graph, visited, 1)
print(count)
|
cs |
'알고리즘 > 백준' 카테고리의 다른 글
백준 알고리즘 2438: 별 찍기 -1 (Python) (0) | 2021.02.02 |
---|---|
백준 알고리즘 15903: 카드 합체 놀이(Python) (0) | 2021.01.25 |
백준 알고리즘 2667: 단지번호붙이기 (Python) (0) | 2021.01.25 |
백준 알고리즘 2178: 미로 탐색 (Python) (0) | 2021.01.19 |
백준 알고리즘 1260: DFS와 BFS (Python) (0) | 2021.01.19 |