Articulation Point - I
Problem Statement
Input:
Output:{1,4}
Explanation: Removing the vertex 1 will
discconect the graph as-
Removing the vertex 4 will disconnect the
graph as-
Intuition
Approach:
Similar to find bridges, just update low to start,
intuition is if adjacent cannot reach node, at earlier time than node
Then articulation pointLinks
Video Links
Approach 1:
Approach 2:
Approach 3:
Approach 4:
Similar Problems
Last updated