C# Coding Test Course, Union Find

Hello, in this post we will discuss the Union-Find data structure, which frequently appears in coding tests using C#.

What is Union-Find?

Union-Find (or Disjoint Set Union, DSU) is a data structure mainly used to manage the connected components of a graph. This data structure is designed to efficiently perform two main operations.

  • Find: An operation that finds the set to which a specific element belongs
  • Union: An operation that merges two sets

Union-Find is particularly useful in the following situations:

  • Problems related to finding the connected components of a graph
  • Problems about grouping elements that belong to the same set

Problem Description

There is an undirected graph. The vertices of the graph are represented by natural numbers from 1 to N, and given M edges, find the set of all vertices connected by the given edges.

Input

  • The first line contains the number of vertices N (1 ≤ N ≤ 105)
  • The second line contains the number of edges M (1 ≤ M ≤ 2 × 105)
  • The next M lines represent two integers a and b indicating the endpoints of the edges (1 ≤ a, b ≤ N)

Output

Print the elements of each set sorted and separated by spaces. The result of each set should be printed on a new line and the sets should be printed in ascending order.

Example Input

5
3
1 2
2 3
4 5

Example Output

1 2 3
4 5

Implementing the Union-Find Algorithm

To solve this problem, we need to implement Union-Find. A basic implementation of the Union-Find data structure proceeds as follows:

1. Initialize the Data Structure

Initialize each element to have itself as its parent.