当前位置:首页|资讯

GFG Shortest XY distance in Grid

作者:您是打尖儿还是住店呢发布时间:2024-09-27


Give a N*M grid of characters 'O', 'X', and 'Y'. Find the minimum Manhattan distance between a X and a Y.

Manhattan Distance : | row_index_x - row_index_y | + | column_index_x - column_index_y |


Example 1:


Input:

N = 4, M = 4

grid = {{X, O, O, O}

{O, Y, O, Y}

{X, X, O, O}

{O, Y, O, O}}

Output:

1

Explanation:

{{X, O, O, O}

{O, Y, O, Y}

{X, X, O, O}

{O, Y, O, O}}

The shortest X-Y distance in the grid is 1.

One possible such X and Y are marked in bold

in the above grid.


Example 2:


Input:

N = 3, M = 3

grid = {{X, X, O}

{O, O, Y}

{Y, O, O}}

Output :

2


Explanation:

{{X, X, O}

{O, O, Y}

{Y, O, O}}

The shortest X-Y distance in the grid is 2.

One possible such X and Y are marked in bold

in the above grid.


Your Task:  

You don't need to read input or print anything. Your task is to complete the function

shortestXYDist() which takes two integers N, and M and an 2D list of size N*M as input and

returns the shortest Manhattan Distance between a X and a Y.

-----------

BFS求最短路问题,

做过好几道类似的题目了,所以能直接自己做出来了。



Copyright © 2024 aigcdaily.cn  北京智识时代科技有限公司  版权所有  京ICP备2023006237号-1