Strongly Connected Components (Tarjan’s Algorithm) Problem Statement
Given an unweighted directed graph with V
vertices and E
edges, your task is to identify and print all the strongly connected components (SCCs) within the graph.
Input:
The first line of input contains an integer 'T' denoting the number of test cases.
For each test case, the first line contains two space-separated integers 'V' and 'E', representing the number of vertices and edges in the graph.
The following 'E' lines each contain two space-separated integers 'a' and 'b', indicating a directed edge from vertex 'a' to 'b'.
Output:
For each test case, print the vertices included in each strongly connected component as space-separated values on a single line per SCC.
The order of SCCs or the order of vertices within an SCC does not matter.
Example:
Input:
T = 1
V = 4, E = 5
Edges = [(0, 1), (1, 2), (2, 0), (1, 3), (3, 1)]
Output:
[0, 1, 2]
[3]
Constraints:
1 ≤ T ≤ 300
1 ≤ V ≤ 2000
V - 1 ≤ E ≤ 2000
0 ≤ a, b < V
Note:
Zero-based indexing is used for vertices. You do not need to output the results; the function handles it internally.

AnswerBot
4mo
Tarjan's Algorithm is used to find strongly connected components in an unweighted directed graph.
Tarjan's Algorithm is a depth-first search based algorithm.
It uses a stack to keep track of vertices in...read more
Help your peers!
Add answer anonymously...
Amazon Software Developer interview questions & answers
A Software Developer was asked 1mo agoQ. Could you describe the process for designing a data structure that allows for al...read more
A Software Developer was asked 1mo agoQ. What is HTML?
A Software Developer was asked 1mo agoQ. What is MySQL?
Popular interview questions of Software Developer
A Software Developer was asked 1mo agoQ1. Could you describe the process for designing a data structure that allows for al...read more
A Software Developer was asked 1mo agoQ2. What is MySQL?
A Software Developer was asked 1mo agoQ3. What is Java?
Top HR questions asked in Amazon Software Developer
A Software Developer was asked 1mo agoQ1. Tell me about a time you had to get to the root cause of a problem
A Software Developer was asked 5mo agoQ2. What are the short-term and long-term goals for the team or organization?
A Software Developer was asked 5mo agoQ3. Why do you want to work at Amazon?
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

