-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path1076.py
30 lines (26 loc) · 932 Bytes
/
1076.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
# Ivan Carvalho
# Solution to https://www.beecrowd.com.br/judge/problems/view/1076
#!/usr/bin/env python
# -*- coding : utf-8 -*-
from collections import defaultdict
def dfs(graph, start, total_vertices):
count = 0
alreadybeen = [1 for i in range(total_vertices)]
stack = [start]
while stack:
v = stack.pop()
if alreadybeen[v]:
count += 1
alreadybeen[v] = 0
stack.extend(graph[v])
return count
casos_no_total = int(input())
for caso_da_vez in range(casos_no_total):
vertice_inicial = int(input())
vertices_total, arestas_total = [int(i) for i in input().split(" ")]
grafo = defaultdict(list)
for aresta_da_vez in range(arestas_total):
aresta1, aresta2 = [int(i) for i in input().split(" ")]
grafo[aresta1].append(aresta2)
grafo[aresta2].append(aresta1)
print(2 * dfs(grafo, vertice_inicial, vertices_total) - 2)