shlogg · Early preview
Md Ariful Haque @mah-shamim

Find Edges In Shortest Paths: Boolean Array Of Edge Inclusion

Find Edges in Shortest Paths: Given undirected weighted graph, find boolean array where answer[i] is true if edge edges[i] is part of at least one shortest path from node 0 to n - 1.

3123. Find Edges in Shortest Paths
Hard
You are given an undirected weighted graph of n nodes numbered from 0 to n - 1. The graph consists of m edges represented by a 2D array edges, where edges[i] = [ai, bi, wi] indicates that there is an edge between nodes ai and bi with weight wi.
Consider all the shortest paths from node 0 to node n - 1 in the graph. You need to find a boolean array answer where answer[i] is true if the edge edges[i] is part of at least one shortest path. Otherwise, answer[i] is false.
Return the array answer.
Note that the graph may not be connected.
Example 1:


Input: n...