this is an example problem from an old midterm:
Let G = (V, E) be a connected undirected graph where the edges have positive integer edge weights associated with them, and a vertex s ∈ V is the source. Provide an algorithm that for each vertex t ∈ V reports the minimum last edge weight on a non-decreasing path from s to t (∞ if there is no such path). A path v1, v2, . . . vr is non-decreasing if w(v_i, v_i+1) ≤ w(v_i+1, v_i+2) for i = 1, 2, ...r−2.
Am I correct in thinking that the problem wants me to come up with an algorithm that given a graph with a starting vertex, can find the length of the shortest path, that also has edge weights increasing as you go down the path, to every other vertex it can reach?