Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
From Treasure Maps to Tech: Understanding Multi-Source Pathfinding | Islands and Treasures | Grid Algorithms
Feb 8, 2025
138 views
Written by Prashant Basnet
Prashant Basnet, a software engineer at Unisala.com, focuses on software development and enjoys building platforms to share knowledge. Interested in system design, data structures, and is currently learning NLP
Let's first understand why is this question and it's solution significant to us:
The Why??
The Neetcode problem:
You are given a m×n
m×n 2D grid initialised with these three possible values:
Fill each land cell with the distance to its nearest treasure chest. If a land cell cannot reach a treasure chest than the value should remain INF.
Assume the grid can only be traversed up, down, left, or right.
Modify the grid in-place.
Example 1:
Example 2:
Here we need to find how much distant it is from the current location to the nearset treasure chest. If a land cell cannot reach a treasure chest than the value should remain INF as originally supplied in the grid.
This is our input grid, where we are supplied 2D array with
Visualising
Let's start brainstorming & how we would approach it:
TO me the 2nd approach sounds clean and better.
Final State (Fill in distance 4):
Each step:
BFS is Better Than DFS for This Problem
1. Problem Requirements: Shortest Path
Th problem requires finding the shortest distance from each cell to the nearest treasure (0).
2. Redundant Updates in DFS
InDFS, you might revisit the same cell multiple times through different paths. Each time you revisit a cell, you might update its distance, even if a shorter distance has already been found.
Thi leads to redundant updates and inefficiency.
In BFS, each cell is visited only once, and its distance is updated with the shortest possible value immediately.
3. Performance
4. Stack Overflow in DFS
DF uses recursion, which relies on the call stack. For large grids, the recursion depth can become very large, leading to a stack overflow.
BF uses a queue, which is not limited by stack size and is more suitable for large grids.
point to be noted: when we run sequencial traversing we already have all the position where we can find gold.
#DataStructures #leetcode #Graph #Traversal