일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Algorythm
- 2909
- 알고리즘
- springboot3.x
- algotythm
- raspberrypi
- 라즈베리파이3
- Python
- dynaminprogramming
- bootstrap
- 크롤링
- 트리
- CSS
- 13237
- NAV
- 라즈베리파이
- 2579
- nav-tab
- 라즈비안
- 16.04
- MongoDB
- node.js
- dp
- 파이썬
- Crawling
- ubuntu
- 라즈베리파이3b+
- baekjun
- 백준
- HTML
Archives
- Today
- Total
노트
[백준] 2606번 바이러스 python 본문
v = int(input())
e = int(input())
graph = [[] for _ in range(v+1)]
for _ in range(e):
a, b = map(int, input().split())
graph[a].append(b)
graph[b].append(a)
def dfs(x):
global count
visited[x] = True
count += 1
for node in graph[x]:
if visited[node]:
continue
dfs(node)
count = 0
visited = [False for _ in range(v+1)]
dfs(1)
print(count-1)
'알고리즘' 카테고리의 다른 글
[백준] 2002번 추월 python (0) | 2023.07.23 |
---|---|
[백준] 4949번 균형잡힌 세상 python (0) | 2023.07.11 |
[백준] 2644번 촌수계산 python (0) | 2023.07.01 |
[백준] 18429번 근손실 python (0) | 2023.06.23 |
[백준] 14267번 회사 문화 1 python (0) | 2023.06.17 |
Comments