17. Shortest Path Visiting All Nodes
The problem can be found at the following link: Question Link
My Approach
Firstly we have our number of nodes stored in n. The mask represents all the nodes visited. The visited array tells us if we've visited [i] mask and [j] node.
Now calculate the mask for each node and push it into the queue q. Also mark the node and its mask visited. The mask of that node is stored in origMask.
While our q is not empty do the following -
pop the front of queue into curr.
currNode is the node in the curr
currMask if the mask of currNode
currLength is the length of the path
if currMask == mask which means all the nodes have been visited, return currLength - 1.
Else iterate over the adjacency list of the currNode provided and find its neighbors.
For each neighbor find the newMask and if the neighbor with newMask is not already visited push the neighbor, newMask and currLength + 1 into the queue q. This means that we can go to this newNode.
Mark the newMask and neighbor visited.
At last if no such path is found, return -1
Time and Auxiliary Space Complexity
Time Complexity:
O(n)
Auxiliary Space Complexity:
O(n)
Code (C++)
Contribution and Support
For discussions, questions, or doubts related to this solution, please visit our discussion section. We welcome your input and aim to foster a collaborative learning environment.
If you find this solution helpful, consider supporting us by giving a ⭐ star
to the rishabhv12/Daily-Leetcode-Solution repository.
Last updated