It is vitally important to have all the cities connected by highways in a war. If a city is occupied by the enemy, all the highways from/toward that city are closed. We must know immediately if we need to repair any other highways to keep the rest of the cities connected. Given the map of cities which have all the remaining highways marked, you are supposed to tell the number of highways need to be repaired, quickly.
For example, if we have 3 cities and 2 highways connecting city1−city2 and city−city3. Then if city1 is occupied by the enemy, we must have 1 highway repaired, that is the highway city2−city3.
Input Specification:
Each input file contains one test case. Each case starts with a line containing 3 numbers N (<1000), M and K, which are the total number of cities, the number of remaining highways, and the number of cities to be checked, respectively. Then M lines follow, each describes a highway by 2 integers, which are the numbers of the cities the highway connects. The cities are numbered from 1 to N. Finally there is a line containing K numbers, which represent the cities we concern.
Output Specification:
For each of the K cities, output in a line the number of highways need to be repaired if that city is lost.
N, M, K = list(map(int, input().split())) roads = [[] for i in range(N)] for _ in range(M): a = input().split() roads[int(a[0]) - 1].append(int(a[1]) - 1) roads[int(a[1]) - 1].append(int(a[0]) - 1)
check = list(map(int, input().split())) for i in check: count = 0 visited = [Falsefor _ in range(N)] visited[i - 1] = True for start, _ in enumerate(roads): ifnot visited[start]: count += 1 que = [start] while que: city = que.pop() for destination in roads[city]: ifnot visited[destination]: visited[destination] = True que.insert(0, destination) print(count - 1)
N, M, K = list(map(int, input().split())) roads = [[] for i in range(N)] for _ in range(M): a = input().split() roads[int(a[0]) - 1].append(int(a[1]) - 1) roads[int(a[1]) - 1].append(int(a[0]) - 1)
defdfs(city): visited[city] = True for destination in roads[city]: ifnot visited[destination]: dfs(destination)
check = list(map(int, input().split())) for i in check: count = 0 visited = [Falsefor _ in range(N)] visited[i - 1] = True for start, _ in enumerate(roads): ifnot visited[start]: count += 1 dfs(start) print(count - 1)
N, M, K = list(map(int, input().split())) roads = [[] for i in range(N)] for _ in range(M): a = input().split() roads[int(a[0]) - 1].append(int(a[1]) - 1) roads[int(a[1]) - 1].append(int(a[0]) - 1)
check = list(map(int, input().split())) for i in check: count = 0 visited = [Falsefor _ in range(N)] visited[i - 1] = True for start, _ in enumerate(roads): ifnot visited[start]: count += 1 stk = [start] while stk: city = stk.pop() for destination in roads[city]: ifnot visited[destination]: visited[destination] = True stk.append(destination) print(count - 1)
intmain(){ int N, M, K; cin >> N >> M >> K; vector<int> roads[N + 1]; for (int i = 0; i < M; i++) { int a, b; cin >> a >> b; roads[a].push_back(b); roads[b].push_back(a); } for (int i = 0; i < K; i++) { int destroyed; cin >> destroyed; int count = 0; bool visited[N + 1]; for (int j = 1; j < N + 1; j++) visited[j] = false; visited[destroyed] = true; for (int j = 1; j < N + 1; j++) { if (!visited[j]) { count += 1; stack<int> stk; stk.push(j); visited[j] = true; while (!stk.empty()) { int city = stk.top(); stk.pop(); for (auto k:roads[city]) { if (!visited[k]) { visited[k] = true; stk.push(k); } } } } } cout << count - 1 << endl; } }