Minimum Cost Path with Edge Reversals โ€” Algorithm Visualization & Coding Challenge

Choose Your Learning Path

How would you like to learn today?
Visualize algorithms in real time, explore them step by step, or challenge yourself with a test.Choose a path to focusโ€”or scroll down to preview all options.

๐Ÿง  Active Learning

Visualize the algorithm step-by-step with interactive animations in real time.

๐Ÿ“– Passive Learning

Read the full explanation, examples, and starter code at your own pace.

๐ŸŽฏ Challenge Mode

Drag and arrange the algorithm steps in the correct execution order.

๐Ÿง  Select Active to activate

JUMP INTO VISUALIZATION
Watch algorithms run step by step.

Follow every state change, comparison, and transformation as the execution unfolds in real time.

๐Ÿ“– Select Passive to activate

Understanding Minimum Cost Path with Edge Reversals
Detailed explanation and reference materials
Problem Overview

Minimum Cost Path with Edge Reversals

Difficulty: Medium


๐Ÿงฉ Problem Statement

You are given a directed, weighted graph with n nodes labeled from 0 to n - 1, and an array edges where:

edges[i] = [ui, vi, wi]

represents a directed edge from node ui โ†’ vi with cost wi.


๐Ÿ” Special Rule (Edge Reversal)

  • Each node ui has a switch that can be used at most once.
  • When you arrive at ui and haven't used its switch:
    • You may pick one incoming edge vi โ†’ ui
    • Reverse it to ui โ†’ vi
    • Immediately traverse it
  • This reversed traversal costs 2 ร— wi
  • The reversal is valid only for that single move

๐ŸŽฏ Goal

Return the minimum total cost to travel from node 0 to node n - 1.
If itโ€™s not possible, return -1.


๐Ÿ“Œ Example 1

Input

n = 4
edges = [[0,1,3],[3,1,1],[2,3,4],[0,2,2]]

Output

5

Explanation

  • 0 โ†’ 1 (cost 3)
  • At node 1, reverse edge 3 โ†’ 1 to 1 โ†’ 3 and traverse (cost 2 ร— 1 = 2)
  • Total cost = 5

๐Ÿ“Œ Example 2

Input

n = 4
edges = [[0,2,1],[2,1,1],[1,3,1],[2,3,3]]

Output

3

Explanation

  • 0 โ†’ 2 โ†’ 1 โ†’ 3
  • No reversal needed
  • Total cost = 3

โš™๏ธ Constraints

  • 2 โ‰ค n โ‰ค 5 ร— 10โด
  • 1 โ‰ค edges.length โ‰ค 10โต
  • 0 โ‰ค ui, vi < n
  • 1 โ‰ค wi โ‰ค 1000
โ€” Written by Saurabh Patil โ€ข B.Tech CSE โ€ข Software Developer

Categories
graphs
leetcode-problem-of-the-day
java
Reference Link
https://leetcode.com/problems/minimum-cost-path-with-edge-reversals/

Loading component...

Starter Code
Test, modify, or copy the starter code. Click "Visualize" to import into the canvas.
Java
Output:
Understood Algorithm, Test Me now ๐ŸŽฎ

๐ŸŽฏ Select Challenge to activate

๐Ÿง  Logic Puzzle
Think & Arrange, Don't Just Copy-Paste

Drag and arrange the algorithm steps in the correct execution order instead of spending time typing code letter by letter.

Arrange the Algorithm Correctly ๐Ÿงฉ

The algorithm is divided into three logical parts. Carefully rearrange each section in the correct order to form a complete and valid solution.

Understand Below Algorithm

Don't Know Current Algorithm ? ย 

Green text means the instruction is placed in the correct position.

Red text means the instruction is in the wrong position.

Block Colors

Instructions with the same background color indicate particular blocks start and end.

A tick mark means the instruction is correct and locked.

๐Ÿ”’ Locked steps cannot be moved. Only unlocked steps are draggable.

๐Ÿ”Š Enable sound for swap feedback and completion effects.

DrawToCode โ€” Visualize, Practice & Master Algorithms

Learn data structures and algorithms through interactive visualizations. Practice coding problems, track your progress, and understand concepts deeply.

Visualization Boardย |ย Problemsย |ย Aboutย |ย Privacy Policy
EmailLinkedInTwitterInstagramGitHub
ยฉ 2026 DrawToCode. All rights reserved.