743. Network Delay Time
There are N network nodes, labelled 1 to N.
Given times, a list of travel times as directed edges times[i] = (u, v, w), where u is the source node, v is the target node, and w is the time it takes for a signal to travel from source to target.
Now, we send a signal from a certain node K. How long will it take for all nodes to receive the signal? If it is impossible, return -1.
Example 1:

Input: times = [[2,1,1],[2,3,1],[3,4,1]], N = 4, K = 2
Output: 2Note:
Nwill be in the range[1, 100].Kwill be in the range[1, N].- The length of
timeswill be in the range[1, 6000]. - All edges
times[i] = (u, v, w)will have1 <= u, v <= Nand0 <= w <= 100.
# @lc code=start
using LeetCode
function network_delay_time(times::Vector{Vector{Int}}, n::Int, k::Int)
graph = [Tuple{Int,Int}[] for _ in 1:n]
for (u, v, t) in times
push!(graph[u], (v, t))
end
pq = PriorityQueue{Int,Int}([(k, 0)])
res = Int[]
while !isempty(pq)
node, d = dequeue_pair!(pq)
for (neb, d1) in graph[node]
pq[neb] = min(get(pq, neb, typemax(Int)), d + d1)
end
push!(res, d)
end
return length(res) == n ? maximum(res) : -1
end
# @lc code=endnetwork_delay_time (generic function with 1 method)
This page was generated using DemoCards.jl and Literate.jl.