Question: What is the time complexity of Dijkstra\'s algorithm using a priority queue implemented with a binary heap?
Options:
Correct Answer: O(E log V)
Solution:
Dijkstra\'s algorithm has a time complexity of O(E log V) when using a priority queue implemented with a binary heap, where E is the number of edges and V is the number of vertices.