백준 2606번 python 풀이 - 바이러스
문제 링크
해결책
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
31
32
33
34
35
36
37
38
39
40
41
import sys
def dfs(start):
stk = [start]
global cnt
while stk:
cur = stk.pop()
if is_Visited[cur] is False:
cnt += 1
is_Visited[cur] = True
for i in range(len(path[cur]) - 1, -1, -1):
if is_Visited[path[cur][i]] is False:
stk.append(path[cur][i])
def bfs(start):
que = [start]
while que:
cur = que.pop(0)
is_Visited[cur] = True
for v in path[cur]:
if is_Visited[v] is False:
que.append(v)
N = int(sys.stdin.readline().rstrip())
M = int(sys.stdin.readline().rstrip())
path = [[] for _ in range(N+1)]
is_Visited = [False for _ in range(N+1)]
for _ in range(M):
_from, _to = map(int, sys.stdin.readline().rstrip().split())
path[_from].append(_to)
path[_to].append(_from)
cnt = 0
dfs(1)
print(cnt-1)
주석으로 달 설명
이전문제의 해결책과 거이 유사하다.
This post is licensed under CC BY 4.0 by the author.