Altcademy - a Forbes magazine logo Best Coding Bootcamp 2023

Estimate the Minimum Dominating Set in a Graph

Introduction to Minimum Dominating Set in a Graph

In graph theory, a dominating set for a graph G is a subset of vertices in G such that every vertex not included in the subset is adjacent to at least one vertex in the subset. The problem of finding the smallest dominating set is called the Minimum Dominating Set (MDS) problem, which is known to be NP-hard.

Minimum Dominating Set has various real-world applications, such as network design, facility location, and social network analysis. In this tutorial, we will discuss the concept of MDS, explore a real-world example, and implement a solution to estimate the MDS in a graph using a greedy algorithm.

Real-World Examples and Scenarios

  1. In social networks, MDS can be used to identify a small group of influential individuals who can spread information or influence the entire network.
  2. In facility location problems, MDS can be used to determine the minimum number of facilities needed to serve all customers, assuming that a facility can serve customers within a specific radius.
  3. In wireless sensor networks, MDS can be used to find the minimum number of sensors required to cover the entire area.

Real-World Scenario - Social Network Influence

Let's consider the problem of finding a group of influential users on a social network who can spread information to the entire network. The network can be represented as a graph where vertices represent users and edges represent connections between users.

Problem Statement

Given a graph G(V, E) representing a social network, find the minimum dominating set of influential users.

Tying the Problem Statement with the Real-World Scenario

In the context of our social network scenario, the problem statement translates to finding the smallest group of users that can spread information to the entire network, assuming that a user can influence their direct connections.

Solution to the Problem - Greedy Algorithm

We will use a greedy algorithm to estimate the MDS in the given graph. The algorithm works as follows:

  1. Initialize an empty set D to store the dominating set.
  2. While there are unvisited vertices in the graph, select the vertex with the highest degree (number of connections) and add it to D.
  3. Mark the selected vertex and its neighbors as visited.
  4. Repeat steps 2-3 until all vertices are visited.

Step-by-Step Solution with the Social Network Scenario

Let's apply the greedy algorithm to estimate the MDS in our social network example.

  1. Represent the social network as a graph G.
  2. Initialize an empty set D to store the dominating set.
  3. While there are unvisited vertices in G: a. Find the vertex with the highest degree, and add it to D. b. Mark the selected vertex and its neighbors as visited.
  4. The set D now contains the estimated MDS of influential users.

Code Solution and High-Level Comments

Here's the Python implementation of the greedy algorithm to estimate the MDS in a given graph:

def find_mds(graph):
    # Initialize the dominating set and visited vertices
    dominating_set = set()
    visited = set()

    # While there are unvisited vertices
    while visited != graph.keys():
        # Find the vertex with the highest degree
        highest_degree_vertex = max(graph, key=lambda x: len(graph[x] - visited))

        # Add the vertex to the dominating set
        dominating_set.add(highest_degree_vertex)

        # Mark the selected vertex and its neighbors as visited
        visited.add(highest_degree_vertex)
        visited |= graph[highest_degree_vertex]

    return dominating_set

Calling Functions with Actual Values - Social Network Example

Let's create a sample social network graph and use the find_mds function to find the estimated MDS of influential users.

# Sample social network graph
social_network = {
    "A": {"B", "C"},
    "B": {"A", "C", "D"},
    "C": {"A", "B", "D"},
    "D": {"B", "C", "E"},
    "E": {"D"}
}

# Find the estimated MDS of influential users
influential_users = find_mds(social_network)
print(influential_users)  # Output: {'B', 'E'}

In this example, users B and E form the estimated MDS, meaning they can spread information to the entire network.

Explaining the Code Solution with Intuitions and Analogies

The greedy algorithm works by iteratively selecting the vertex with the highest degree and adding it to the dominating set. This approach is based on the intuition that a vertex with a high degree can cover more vertices in the graph, thus reducing the size of the dominating set.

Although the greedy algorithm does not guarantee an optimal solution, it provides a reasonable approximation of the MDS in most cases, especially when the graph is large and complex.

How the Solution Can Solve Other Similar Real-World Problems

The same greedy algorithm can be applied to other real-world problems that involve finding the minimum dominating set, such as facility location and wireless sensor networks. By representing the problem as a graph, the greedy algorithm can be used to estimate the MDS in various contexts, offering a practical solution to a wide range of applications.