Biology, asked by arkire2050, 11 months ago

Find the shortest distance from a source cell to a destination cell, traversing through limited cells only.

Answers

Answered by Anonymous
1

Given a matrix of N*M order. Find the shortest distance from a source cell to a destination cell, traversing through limited cells only. Also you can move only up, down, left and right. If found output the distance else -1.

s represents ‘source’

d represents ‘destination’

Answered by ItsSpiderman44
1

Answer:

We start from the source cell and calls BFS procedure.

We maintain a queue to store the coordinates of the matrix and initialize it with the source cell.

We also maintain a Boolean array visited of same size as our input matrix and initialize all its elements to false.

We LOOP till queue is not empty

Dequeue front cell from the queue

Return if the destination coordinates have reached.

For each of its four adjacent cells, if the value is 1 and they are not visited yet, we enqueue it in the queue and also mark them as visited.

Similar questions