쏘ing
[Python] 백준 2606 바이러스 본문
https://www.acmicpc.net/problem/2606


풀이
#DFS
from collections import deque
def virus(graph, start, visited):
queue = deque([start])
visited[start] = True
count = 0
while queue:
V = queue.popleft()
count += 1
for i in graph[V]:
if not visited[i]:
queue.append(i)
visited[i] = True
print(count - 1)
N = int(input())
M = int(input())
graph = [[] for _ in range(N + 1)]
for _ in range (M):
a, b = map(int, input().split())
graph[a].append(b)
graph[b].append(a)
visited = [False] * (N + 1)
virus(graph, 1, visited)
'알고리즘 > CLASS 3' 카테고리의 다른 글
[Python] 백준 1541 잃어버린 괄호 (0) | 2022.02.27 |
---|---|
[Python] 백준 1931 회의실 배정 (0) | 2022.02.26 |
[Python] 백준 1260 DFS와 BFS (0) | 2022.02.26 |
[Python] 백준 11726 2 x n 타일링 (0) | 2022.02.26 |
[Python] 백준 11286 절댓값 힙 (0) | 2022.02.23 |
Comments