-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path아침 산책.py
62 lines (41 loc) · 1.13 KB
/
아침 산책.py
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
"""
[문제 이해]
- N개의 노드, N-1 엣지
- 시작점, 끝점 모두 실내 / 그 외 모두 실외
- 탐색 가짓수
[주의]
- 인덱스 1 ~ N 보장하기
[질문]
- 시작점, 끝점이 같을 수도 있나?
"""
import sys
readline = lambda : sys.stdin.readline().strip()
sys.setrecursionlimit(10**9)
EMPTY_0 = -1
N = int(readline())
NUMS = N + 1
is_internal_arr = [EMPTY_0] + [int(c) for c in readline()]
# 그래프 만들기
graph = [[] for _ in range(NUMS)]
for _ in range(N - 1):
u, v = map(int, readline().split())
graph[u].append(v)
graph[v].append(u)
visited = [False] * (NUMS)
# 순회 및 cnt
cnt = 0
def dfs(start_v, start=False): # 산책중, 실내 만나면 끝
global cnt
if not start and is_internal_arr[start_v]:
cnt += 1
return
visited[start_v] = True
for child_v in graph[start_v]:
if not visited[child_v]:
dfs(child_v)
# 백트래킹 주의
visited[start_v] = False
for start_v in range(1, NUMS):
if is_internal_arr[start_v]:
dfs(start_v, start=True)
print(cnt)