Critical Connection Problem Statement
In a network with 'N' system nodes, identified from 0 to N-1, and 'M' connections, determine all critical connections. A connection is critical if its removal disrupts the network connectivity between the nodes involved.
Input:
The first line contains a positive integer 'T', representing the number of test cases. Each test case starts with two integers 'N' and 'M', indicating the count of system nodes and connections respectively. This is followed by 'M' lines, each containing two space-separated integers 'u' and 'v', describing a connection between nodes 'u' and 'v'.
Output:
For each test case, begin with an integer 'X' representing the count of critical connections. The subsequent 'X' lines list pairs of integers 'u' and 'v', indicating a critical connection where 'u' < 'v'. Each test case's output is separated by a line.
Example:
For given N = 4, M = 4, a critical connection exists between system node 0 and 1.
Constraints:
- 1 <= T <= 5
- 1 <= N, M <= 106
- 0 <= u, v <= N - 1
- There are no repeated connections.
- Time Limit: 1 sec.
Note:
No need to print anything; focus on implementing the function.

AnswerBot
4mo
Implement a function to find critical connections in a network with system nodes and connections.
Create an adjacency list to represent the network connections.
Use Tarjan's algorithm to find critical c...read more
Help your peers!
Add answer anonymously...
Amazon Software Developer Intern interview questions & answers
A Software Developer Intern was asked 4mo agoQ. Given a linked list, find the n'th node from the end of the list.
A Software Developer Intern was asked 4mo agoQ. Given a tree, find its diameter (the longest path between two nodes in the tree)...read more
A Software Developer Intern was asked 4mo agoQ. Given a matrix, find the shortest distance between two given points located anyw...read more
Popular interview questions of Software Developer Intern
A Software Developer Intern was asked 4mo agoQ1. Given a linked list, find the n'th node from the end of the list.
A Software Developer Intern was asked 4mo agoQ2. Given a tree, find its diameter (the longest path between two nodes in the tree)...read more
A Software Developer Intern was asked 4mo agoQ3. Given a matrix, find the shortest distance between two given points located anyw...read more
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

