
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
Program to find out special types of subgraphs in a given graph in Python
Suppose we have a special type of graph that has two types of vertices that are named head and feet. The graph has only one head and there are k edges that connect the head to each of the feet. So, if we are given an undirected, unweighted graph; we shall have to find out these special types of graphs in the vertex disjoint subgraphs of the graph. Any two graphs are said to be vertex disjoint if they have no vertex in common.
So, if the input is like
number of nodes (n) = 5, number of feet (t) = 2, then the output will be 5.
There can be 5 such special graphs that are vertex disjoint subgraphs of the given graph.
To solve this, we will follow these steps −
- G := a new list that contain n+1 empty lists
- for each item in edges, do
- s := item[0]
- d := item[1]
- insert d at the end of G[s]
- insert s at the end of G[d]
- visit := a new map
- for i in range 0 to n, do
- v := G[i]
- if size of v is same as 1, then
- s := v[0]
- if s not present in visit, then
- visit[s] := [i]
- otherwise,
- append i at the end of visit[s]
- otherwise when size of v is same as 0, then
- n := n - 1
- tmp := 0
- for each k in visit, do
- x := size of visit[k] -t
- if x > 0, then
- tmp := tmp + x
- return n - tmp
Example
Let us see the following implementation to get better understanding −
def solve(n, t, edges): G = [[] for _ in range(n + 1)] for item in edges: s, d = map(int, item) G[s].append(d) G[d].append(s) visit = {} for i in range(n): v = G[i] if len(v) == 1: s = v[0] if s not in visit: visit[s] = [i] else: visit[s].append(i) elif len(v) == 0: n -= 1 tmp = 0 for k in visit: x = len(visit[k])-t if x > 0: tmp += x return n - tmp print(solve(6, 2, [(1,4), (2,4), (3,4), (3,4), (5,3), (6,3)]))
Input
6, 2, [(1,4), (2,4), (3,4), (3,4), (5,3), (6,3)]
Output
5
- Related Articles
- Python Program to find out the determinant of a given special matrix
- Program to find out the number of special numbers in a given range in Python
- Program to Find Out the Special Nodes in a Tree in Python
- C++ Program to find out the number of bridge edges in a given graph
- Program to find out the value of a given equation in Python
- Program to find out the minimum size of the largest clique in a graph (Python)
- Program to find size of common special substrings of two given strings in Python
- Program to Find Out the Edges that Disconnect the Graph in Python
- Program to find out the greatest subarray of a given length in python
- Program to find out number of distinct substrings in a given string in python
- Program to find out the critical and pseudo-critical edges in a graph in Python
- C++ program to find out the shortest cost path in a given graph for q queries
- Program to Find Out the Minimum Cost Possible from Weighted Graph in Python
- Program to find out if the graph is traversable by everybody in Python
- C++ Program to find out the super vertices in a graph

Advertisements