Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Bitnami MediaWiki
Search
Search
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
4229 – Kdist
(section)
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== Rezolvare == <syntaxhighlight lang="python3"> from collections import defaultdict, deque def calculate_color_distances(n, k, edges, colors): tree = defaultdict(list) for u, v in edges: tree[u].append(v) tree[v].append(u) color_nodes = defaultdict(list) for i in range(n): color_nodes[colors[i]].append(i + 1) def bfs_distance_sum(start, valid_nodes): visited = set() queue = deque([(start, 0)]) visited.add(start) distance_sum = 0 node_count = 0 while queue: node, dist = queue.popleft() distance_sum += dist node_count += 1 for neighbor in tree[node]: if neighbor not in visited and neighbor in valid_nodes: visited.add(neighbor) queue.append((neighbor, dist + 1)) return distance_sum, node_count color_distance_sums = [0] * k for color in range(1, k + 1): nodes = color_nodes[color] if len(nodes) < 2: continue total_distance_sum = 0 for node in nodes: dist_sum, node_count = bfs_distance_sum(node, set(nodes)) total_distance_sum += dist_sum color_distance_sums[color - 1] = total_distance_sum // 2 return color_distance_sums n, k = map(int, input().split()) edges = [tuple(map(int, input().split())) for _ in range(n - 1)] colors = [int(input()) for _ in range(n)] result = calculate_color_distances(n, k, edges, colors) for dist_sum in result: print(dist_sum) </syntaxhighlight>
Summary:
Please note that all contributions to Bitnami MediaWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Bitnami MediaWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Toggle limited content width